scripts/scripts/fish/prompt.fish

19 lines
347 B
Fish
Raw Normal View History

2019-06-24 06:23:58 -07:00
function fish_prompt
2019-07-05 19:09:01 -07:00
echo (set_color c792ea)"$hostname% "(set_color normal)
2019-06-24 06:23:58 -07:00
end
function fish_right_prompt
2019-07-05 19:09:01 -07:00
echo (set_color c3e88d)(pwd)(set_color normal)
2019-06-24 06:23:58 -07:00
end
function fish_greeting
2019-07-05 19:09:01 -07:00
set_color c50ed2
2019-06-25 16:13:32 -07:00
2019-07-05 19:09:01 -07:00
echo "Word of the moment: "(shuf -n1 /usr/share/dict/words) |
awk -f ~/src/scripts/text/mid.awk col=$COLUMNS
2019-06-25 16:13:32 -07:00
2019-07-05 19:09:01 -07:00
set_color normal
2019-06-24 06:23:58 -07:00
end
## EOF