dotfiles

*nix config files
git clone git://git.pyratebeard.net/dotfiles.git
Log | Files | Refs | README

commit dba7ba725128a0059af96357d01bdcc1d8cbb7ab
parent 32829e3ba9d4bb35fb2a66b74d5498dee891e33e
Author: pyratebeard <root@pyratebeard.net>
Date:   Mon, 11 May 2020 16:01:00 +0100

downtime tty colours

Diffstat:
Azsh/.zsh/downtime.zsh | 22++++++++++++++++++++++
Mzsh/.zshrc | 2+-
2 files changed, 23 insertions(+), 1 deletion(-)

diff --git a/zsh/.zsh/downtime.zsh b/zsh/.zsh/downtime.zsh @@ -0,0 +1,22 @@ +# DOWNTIME +# tty colors +if [ "$TERM" = "linux" ] +then + echo -en "\e]P0212021" #black + echo -en "\e]P86b6573" #darkgrey + echo -en "\e]P1e29e84" #darkred + echo -en "\e]P9b8a3a7" #red + echo -en "\e]P2b6ce63" #darkgreen + echo -en "\e]PAb8d680" #green + echo -en "\e]P3d4cd61" #yellow + echo -en "\e]PBd3c284" #orange + echo -en "\e]P48fbed3" #darkblue + echo -en "\e]PC929eb5" #blue + echo -en "\e]P5888aa9" #darkmagenta + echo -en "\e]PD9c96ae" #magenta + echo -en "\e]P6cfe063" #darkcyan + echo -en "\e]PEdee773" #cyan + echo -en "\e]P7fbf6f6" #lightgrey + echo -en "\e]PFd4e4bf" #white + clear #for background artifacting +fi diff --git a/zsh/.zshrc b/zsh/.zshrc @@ -8,4 +8,4 @@ setopt auto_cd export PATH=$PATH:/home/pyratebeard/bin:/home/pyratebeard/.local/bin -source ~/.zsh/futuremyth.zsh +source ~/.zsh/downtime.zsh