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
This commit is contained in:
mitchell 2024-06-30 18:41:49 -04:00
parent 81e8b0c49c
commit 503fb8bff6
15 changed files with 83 additions and 638 deletions

View file

@ -1,10 +1,16 @@
function fish_greeting -d "What's up, fish?"
set_color $fish_color_autosuggestion
uname -nmsr
# TODO: `command -q -s` only works on fish 2.5+, so hold off on that for now
set uname (uname -nor)
command -s uptime >/dev/null
and uptime
and if test (uname) = Linux
and set uptime '; ' (uptime --pretty)
else
and set uptime '; ' (uptime)
end
echo -s $uname $uptime
set_color normal
end