mirror of
https://github.com/mitchell/dotfiles.git
synced 2025-06-20 05:05:35 +00:00
- Set fish colors to more gruvbox accurate theme - Fix nvim transparency - Remove conky, qutebrowser, and taskrc configs - Update fish greeting - Update toglpulse script
17 lines
334 B
Fish
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
|