fish: formatted fish functions

This commit is contained in:
Primrose 2024-07-18 01:11:23 +02:00
parent 6169d1e7ff
commit 667dce99d1
Signed by: primrose
GPG key ID: 4E887A4CA9714ADA
15 changed files with 176 additions and 176 deletions

View file

@ -1,14 +1,14 @@
function fish_greeting
set_color --italics
switch $FISH_GREETING
case "toh"
cat ~/.quotes/toh/* | shuf -n 1
case "fleabag"
cat ~/.quotes/fleabag/* | shuf -n 1
case "date"
date
case "citation"
~/.local/bin/citation.py
case "*"
end
set_color --italics
switch $FISH_GREETING
case toh
cat ~/.quotes/toh/* | shuf -n 1
case fleabag
cat ~/.quotes/fleabag/* | shuf -n 1
case date
date
case citation
~/.local/bin/citation.py
case "*"
end
end