mirror of
https://github.com/mitchell/dotfiles.git
synced 2025-12-17 12:27:22 +00:00
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:
parent
81e8b0c49c
commit
503fb8bff6
15 changed files with 83 additions and 638 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue