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,12 +13,14 @@ function fish_right_prompt
end
function fish_greeting
set_color c50ed2
if test -f /usr/share/dict/words && test (what shuf)
set_color c50ed2
echo "Word of the moment: "(shuf -n1 /usr/share/dict/words) |
awk -f $_agw_dir_scripts/text/mid.awk col=$COLUMNS
echo "Word of the moment: "(shuf -n1 /usr/share/dict/words) |
awk -f $_agw_dir_scripts/text/mid.awk col=$COLUMNS
set_color normal
set_color normal
end
end
## EOF