Skip to content

keeper customizations for terminator and general shell stuff

Notifications You must be signed in to change notification settings

SamKirsch10/terminator

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

56 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Setup

PYTHON_VERSION="python3.11"
sudo apt install -y software-properties-common
sudo add-apt-repository ppa:deadsnakes/ppa
sudo apt update
sudo apt install -y $PYTHON_VERSION
stat /usr/bin/python3 | grep -q 'symbolic link'
if [[ "$?" == "0" ]]; then
    ls -la /usr/bin/python3 | grep -q "$PYTHON_VERSION"
    if [[ "$?" != "0" ]]; then
        rm /usr/bin/python3
        ln -s /usr/bin/${PYTHON_VERSION} /usr/bin/python3
    fi
fi
curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
sudo python3 get-pip.py
pip install --user pipenv virtualenv
virtualenv ~/venv

Install The Pretty Stuff

  1. Install Powerline fonts
  • Run the install.sh
  1. wget the Terminator config
mkdir -p ~/.config/terminator
wget https://raw.githubusercontent.com/SamKirsch10/terminator/master/.config/terminator/config -o ~/.config/terminator/config
  1. Quit/Reopen Terminator.
  2. Install ZSH and set as default
sudo apt install zsh
wget https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh -O - | zsh
  1. ZSH will ask you some questions... we're doing nothing cause we'll use the files here. download / override the zsh files with the ones here

About

keeper customizations for terminator and general shell stuff

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published