fish: check for dict and shuf before doing fish_greeting

master
an 2019-08-05 19:20:51 -04:00
parent d0353649cd
commit 4712d8bb30
1 changed files with 6 additions and 4 deletions

View File

@ -13,6 +13,7 @@ function fish_right_prompt
end
function fish_greeting
if test -f /usr/share/dict/words && test (what shuf)
set_color c50ed2
echo "Word of the moment: "(shuf -n1 /usr/share/dict/words) |
@ -20,5 +21,6 @@ function fish_greeting
set_color normal
end
end
## EOF