fish: use nicer colors

master
an 2019-06-25 19:13:32 -04:00
parent 53ee68eda6
commit 65564aeaec
2 changed files with 7 additions and 3 deletions

View File

@ -9,9 +9,9 @@ function rebuild
$HOME/src/scripts/rebuild.rkt $argv
end
source ~/src/scripts/fish/cheat.fish
source ~/src/scripts/fish/megadl.fish
source ~/src/scripts/fish/prompt.fish
source ~/src/scripts/fish/cheat.fish
source ~/src/scripts/fish/ql.fish
## EOF

View File

@ -1,14 +1,18 @@
function fish_prompt
echo (set_color purple)"$hostname% "
echo (set_color c792ea)"$hostname% "(set_color normal)
end
function fish_right_prompt
echo (set_color green)(pwd)
echo (set_color c3e88d)(pwd)(set_color normal)
end
function fish_greeting
set_color c50ed2
echo "Word of the moment: "(shuf -n1 /usr/share/dict/words) |
awk -f ~/src/scripts/text/mid.awk col=$COLUMNS
set_color normal
end
## EOF