dotfiles/.config/fish/functions/fish_greeting.fish
mitchell 503fb8bff6 Make bspwm work with vnc displays; and general updates/cleanups
- Set fish colors to more gruvbox accurate theme
- Fix nvim transparency
- Remove conky, qutebrowser, and taskrc configs
- Update fish greeting
- Update toglpulse script
2024-06-30 18:41:49 -04:00

17 lines
334 B
Fish

function fish_greeting -d "What's up, fish?"
set_color $fish_color_autosuggestion
set uname (uname -nor)
command -s uptime >/dev/null
and if test (uname) = Linux
and set uptime '; ' (uptime --pretty)
else
and set uptime '; ' (uptime)
end
echo -s $uname $uptime
set_color normal
end