scripts/scripts/prompt.fish

15 lines
277 B
Fish

function fish_prompt
echo (set_color purple)"$hostname% "
end
function fish_right_prompt
echo (set_color green)(pwd)
end
function fish_greeting
echo "Word of the moment: "(shuf -n1 /usr/share/dict/words) |
awk -f ~/src/scripts/mid.awk col=$COLUMNS
end
## EOF