Added fish config

This commit is contained in:
2026-02-18 14:08:14 +00:00
parent 4de4cf6c48
commit 8e5f6f3c09
5 changed files with 138 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
function sysfetch
if type -q fastfetch
if begin
string match -q "*kitty*" "$TERM"
or string match -q "*ghostty*" "$TERM"
end
and test -f "$HOME/.config/fastfetch/kitty.jsonc"
fastfetch --config "$HOME/.config/fastfetch/kitty.jsonc"
else
fastfetch
end
else if type -q neofetch
echo "Why are you still using neofetch? It's deprecated!"
neofetch
else if type -q screenfetch
screenfetch
else if type -q archey
archey
else if type -q lsb_release
lsb_release -a
else if type -q uname
uname
end
end