-
-
Save alixaxel/6c632ee1e778aa019244 to your computer and use it in GitHub Desktop.
Fun with fish and fortunes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# place this in your fish path | |
# ~/.config/fish/config.fish | |
function fish_greeting | |
if not type fortune > /dev/null 2>&1 | |
apt-get install fortune | |
end | |
fortune -a | |
end | |
funcsave fish_greeting |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment