scripts/scripts/fish/prompt.fish

19 lines
347 B
Fish

function fish_prompt
echo (set_color c792ea)"$hostname% "(set_color normal)
end
function fish_right_prompt
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