Created
March 4, 2025 19:16
-
-
Save prirai/77f770796649d779fe6339b68b6591cb to your computer and use it in GitHub Desktop.
My Fish configuration
This file contains hidden or 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
| if status is-interactive | |
| end | |
| function fish_greeting | |
| echo -n "Hello friend! " | |
| set hour (date +%H) | |
| if test $hour -lt 4 | |
| echo -n π | |
| else if test $hour -lt 12 | |
| echo -n π | |
| else if test $hour -lt 18 | |
| echo -n β | |
| else | |
| echo -n π | |
| end | |
| echo (set_color yellow; date +%T; set_color normal) | |
| echo | |
| echo (set_color -i bryellow ; fortune; set_color normal) | |
| echo | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment