CodeNewbie Community 🌱

Cover image for Custom VS Code Title Bar/Theme for Front-End and Back-End Projects (macOS Guide)
Andrew Baisden
Andrew Baisden

Posted on • Originally published at dev.to

Custom VS Code Title Bar/Theme for Front-End and Back-End Projects (macOS Guide)

This guide will give you some basic exposure to Bash scripting. If you want to have more of a deep dive then you can check out a cheat sheet or tutorial which is beyond the scope of this guide Bash Cheatsheet Two great VS Code extensions for changing your workspace are Peacock (my preference) and ColorTabs

The Visual Studio Code Editor, with a color scheme title bar for Back-End Projects
The Visual Studio Code Editor, with a color scheme title bar for Front-End Projects

Creating Bash scripts gives you a manual way to do this and you will also learn how to create Bash scripts. This guide is for macOS however you should be able to adapt it for any operating system. Just do your research (google) and use the appropriate commands and files for your operating system.

The VS Code theme I have installed as of writing is Night Owl β€” Sarah Drasner You can probably use any theme you want just be aware that you will be changing the title bar color. This is completely optional however i believe its both visually appealing and it makes it easier for anyone to distinguish between a front-end and back-end project. So for example you can have two VS Code windows open one for front-end and the other for back-end. Great for when you are working on full-stack applications or even just one of the two. And you will know which one is which just by looking at the title bar.

This is inspired by Wes Bos who i saw first saw using it in his course Advanced React & GraphQL β€” Build Full Stack Applications with React and GraphQL You can get his theme Cobalt2 Theme Official for VS Code

Prerequisites

First make sure that your Visual Studio Code editor is set up for custom title bars.

Code > Preferences > Settings

In the search box type β€œtitle”

  1. Uncheck the box for Window: Native Tabs
  2. Set Window Titlebar Style to: Custom (You might need to restart the code editor to get it working)
  3. Click on the hamburger menu and select Open settings.json. Go to the Workspace Settings tab.

A file and folder tree will automatically be created in the folder you opened in your code editor. It will use the workspace settings in VS Code. Examples can be seen below. This is the manual way to have a custom workspace but i think it’s much faster and feels more natural to do it using the terminal once you have it set up. Anyone who is used to using their terminal for setting up projects in Javascript, React, Vue or other frameworks will understand this. The same is true of anyone who uses npm or yarn for installing project dependencies its just a natural part of the developer workflow.

Folder Tree

└── .vscode/
└── settings.json/
Enter fullscreen mode Exit fullscreen mode

settings.json

{
    "workbench.colorCustomizations": {
        "titleBar.activeForeground": "#000",
        "titleBar.inactiveForeground": "#000000CC",
        "titleBar.activeBackground": "#F3DB04",
        "titleBar.inactiveBackground": "#f3db04bd"
    }
}

Enter fullscreen mode Exit fullscreen mode

Setup

  1. Create a bin directory

The first thing that you need to do is create a bin directory. Because bin is the normal naming convention for executable programs which are held in a subdirectory. Also make sure that you are in the main directory for users. It is always the default directory that the Terminal App will open in. Using the command pwd in your terminal window will give you the current location too. Replace YOURNAME with your actual username for your computer home directory.

/Users/YOURNAME

Create a bin folder in that directory.

cd ~      # this takes us to /Users/YOURNAME
mkdir bin # this creates /Users/YOURNAME/bin
Enter fullscreen mode Exit fullscreen mode
  1. Export your bin directory to the PATH

If you don’t see hidden files and directories or those that begin with a full stop/dot. Press Command + SHIFT + . on your keyboard Quickly Show/Hide Hidden Files on macOS

Make sure that you are in /Users/YOURNAME/ and open the .bash_profile file in your code editor. Create .bash_profile if it does not exist. Add the code below and save the file.

export PATH=$PATH:/Users/YOURNAME/bin
Enter fullscreen mode Exit fullscreen mode

If you have Oh My Zsh installed open .zshrc which will be located at /Users/YOURNAME/.zshrc and add this line to the file.

export PATH=$HOME/bin:/usr/local/bin:$PATH
Enter fullscreen mode Exit fullscreen mode
  1. Create a script file and make it an executable

Navigate to the bin folder located in /Users/YOURNAME

cd bin
Enter fullscreen mode Exit fullscreen mode

Create a file called dev-back-end (with no extension) in this folder.

touch dev-back-end
Enter fullscreen mode Exit fullscreen mode

Open the file in your text editor of choice and add the following.

#!/bin/bash
Enter fullscreen mode Exit fullscreen mode

Bash scripts need to start with #!/bin/bash so that the OS knows that it must use bash and not a different shell. It is a term referred to as β€œshebang”. Using the command which bash will show you where it’s located. The file needs to be an executable to work so change its file permissions using the code below in the terminal.

chmod u+x dev-back-end
Enter fullscreen mode Exit fullscreen mode

Add the code below to the file dev-back-end

#!/bin/bash
mkdir .vscode
cd .vscode
cat <<END >settings.json
{
    "workbench.colorCustomizations": {
        "titleBar.activeForeground": "#000",
        "titleBar.inactiveForeground": "#000000CC",
        "titleBar.activeBackground": "#FF2C70",
    "titleBar.inactiveBackground": "#FF2C70CC"
    }
}
END
Enter fullscreen mode Exit fullscreen mode

Duplicate dev-back-end and rename the copied file to dev-front-end. Add the code below.

#!/bin/bash
mkdir .vscode
cd .vscode
cat <<END >settings.json
{
    "workbench.colorCustomizations": {
        "titleBar.activeForeground": "#000",
        "titleBar.inactiveForeground": "#000000CC",
        "titleBar.activeBackground": "#FFC600",
        "titleBar.inactiveBackground": "#FFC600CC"
    }
}
END
Enter fullscreen mode Exit fullscreen mode

Your folder tree should look like below.

└── bin/
|── dev-back-end/
└── dev-front-end/
Enter fullscreen mode Exit fullscreen mode
  1. Working on Visual Studio Code Projects

Now when you are starting a project the first thing that you should do is cd into that folder and run the front end or back end command from your terminal app. This should create a .vscode/settings.json folder and file structure that will have your custom workspace settings. You can easily customise the colour scheme to match your theme or brand by changing the json settings in the bash files. You can get these from workspace settings in VS Code. Obviously add your own custom settings to the file as well. The name that you give the file will be the name that you must run in your terminal app it can be anything you want.

Back-end Developer Project

dev-back-end
Enter fullscreen mode Exit fullscreen mode

Front-end Developer Project

dev-front-end
Enter fullscreen mode Exit fullscreen mode

VS Code Workspace Settings

└── .vscode/
└── settings.json/
Enter fullscreen mode Exit fullscreen mode

Top comments (0)