-
Notifications
You must be signed in to change notification settings - Fork 2
Ubuntu Jazzing up the Terminal
Out of the box, the terminal shipped with Ubuntu is a bit bland. This section will let you become a power-user 💪.
Terminator lets you arrange multiple terminals in a grid-like interface.
To install Terminator enter sudo apt-get install terminator
into the terminal.
Screenshot of Terminator:
Prerequisites:
-
git
should be installed
To install ZSH
and Oh My ZSH!
use the following commands:
sudo apt install zsh && chsh -s $(which zsh)
Note: you will need to log out and in again to use ZSH instead of bash as your default shell.
sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
Once you restart your terminal, Oh My ZSH!
should be installed.
Checkout the Official Documentation to learn how to install plugins and themes.
👈 Previous | 📖 Home 📖 | Next 👉 |
---|---|---|
Customising Ubuntu | Table of Contents | Installing DevTools and modern web browsers |
Learn to code and help nonprofits. Join our open source community in 15 seconds at http://freecodecamp.com
Follow our Medium blog
Follow Quincy on Quora
Follow us on Twitter
Like us on Facebook
And be sure to click the "Star" button in the upper right of this page.
New to Free Code Camp?
JS Concepts
JS Language Reference
- arguments
- Array.prototype.filter
- Array.prototype.indexOf
- Array.prototype.map
- Array.prototype.pop
- Array.prototype.push
- Array.prototype.shift
- Array.prototype.slice
- Array.prototype.some
- Array.prototype.toString
- Boolean
- for loop
- for..in loop
- for..of loop
- String.prototype.split
- String.prototype.toLowerCase
- String.prototype.toUpperCase
- undefined
Other Links