The command line is a very powerful yet helpful tool, especially in the world of geeks. It gives you the ability to interact with your computer without the need for a graphical user interface. With the command line, you also unlock features you would not have access to with the graphical interface.

I bet you've heard people say, "you can only call yourself a real developer if you at least know how to use the command line." Of course, this differs from person to person, but it takes a step to emphasize how vital the Terminal is.

The command line works by issuing commands to the computer, and the computer, in turn, does whatever it is that you commanded it to do.

A couple of command lines are used for different operating systems. For example, we have the windows terminal configured to run the CMD, Powershell, SSH, WSL, etc. There is also a terminal on Mac, and I need not say that Linux has one, too.
These terminals work fine, but we will install the Hyper Terminal if you want to up your game, have more customizations, and have consistency between the different OS.

Installing the Hyper Terminal on Windows

The Hyper terminal is a terminal built on web technologies with the aim of speed and stability. Hyper also provides users with a beautiful and extensible experience. You get to customize it, and you can also integrate it with multiple tools.

To Install the hyper Terminal, Follow the steps below:

Click on the following link. https://hyper.is

Once you are on the site, it will automatically detect which platform you are using, so Click on download, and it will save on your computer.

Open the directory where the setup is saved and double-click on it.

You will be taken to the installation wizard. Click on Install, and you are done.

The Hyper terminal will be installed on your computer, and you can start using it immediately by running the application.

You can stop at this point, but we can take it further by configuring it with GIT Bash if you care about version control and all the benefits that Git has.

Git Installation

We will start by installing Git because it comes with git bash, which allows us to use bash to interact with the command line.

To install Git, follow the steps below.

  • Follow the link: https://git-scm.com.
  • Head to downloads and choose Windows to download it for your system.
  • Double-click on the .exe file and proceed with the installation wizard.
  • Check on git bash and leave the rest of the default options.
  • Click on Install, and it will be installed on your machine.

Once it is installed. I recommend restarting your machine.

Configuring Hyper with GIT Bash

Open the hyper Terminal and navigate to:

file > edit > preferences

This will open hyper configurations.

Delete everything on that page and paste the configurations below.

module.exports = {
  config: {
    fontSize: 12,

    fontFamily:
      'Menlo, "DejaVu Sans Mono", Consolas, "Lucida Console", monospace',

    cursorColor: "rgba(248,28,229,0.8)",

    cursorShape: "BLOCK",

    foregroundColor: "#fff",

    backgroundColor: "#000",

    borderColor: "#333",

    css: "",

    // custom css to embed in the terminal window
    termCSS: "",

    showHamburgerMenu: "",
    showWindowControls: "",
    padding: "12px 14px",

    colors: {
      black: "#000000",
      red: "#ff0000",
      green: "#33ff00",
      yellow: "#ffff00",
      blue: "#0066ff",
      magenta: "#cc00ff",
      cyan: "#00ffff",
      white: "#d0d0d0",
      lightBlack: "#808080",
      lightRed: "#ff0000",
      lightGreen: "#33ff00",
      lightYellow: "#ffff00",
      lightBlue: "#0066ff",
      lightMagenta: "#cc00ff",
      lightCyan: "#00ffff",
      lightWhite: "#ffffff",
    },

    shell: "C:\\Program Files\\Git\\git-cmd.exe",

    shellArgs: ["--command=usr/bin/bash.exe", "-l", "-i"],

    env: { TERM: "cygwin" },

    bell: "SOUND",

    copyOnSelect: false,
  },
  plugins: [],
  localPlugins: [],
};

Once you are done, save the file, and hyper configurations will be updated.

Close hyper and re-open it again for the changes we have made to take effect.

You are all done. You can confirm that everything works fine by opening a hyper window and typing:

echo $SHELL

Output:

/usr/bin/bash

If you see the following output, pat yourself on the back. The whole process was successful.

Ending ...

With the following guide, you can install the hyper Terminal, which gives you all the necessary customizations. Did you successfully install the Hyper Terminal? Comment below and tell us your experience so far.

If you have gotten so far, thank you for reading. Stand a chance to get geekbits premium by sharing this article.

Until next time, Salute!

If you enjoy our content, please consider buying us a coffee to support our work:

Table of Contents
Great! Next, complete checkout for full access to GeekBits.
Welcome back! You've successfully signed in.
You've successfully subscribed to GeekBits.
Success! Your account is fully activated, you now have access to all content.
Success! Your billing info has been updated.
Your billing was not updated.