You are not logged in.
Pages: 1
So...my linux brain is having an alzheimer's moment, but how do I solarize a TTY? I've read the instructions from the link below and still having trouble with it. Also, would it not display for those who SSH into it either?
https://github.com/joepvd/tty-solarized
The reason I stick to TTY is that it is for my server which is mostly headless and doesn't need an x-server.
Offline
how do I solarize a TTY?
Try:
mkdir ~/git && cd ~/git
git clone https://github.com/joepvd/tty-solarized.git
echo ". ~/git/tty-solarized/tty-solarized-dark.sh" >> ~/.bash_profile
This adds a line to your shell initialisation file (~/.bash_profile) that sources the github script, change it to the light version if you prefer.
If you use zsh rather than bash, add
. ~/git/tty-solarized/tty-solarized-dark.sh
to ~/.zlogin instead.
Offline
Pages: 1