mono-light: fondo

This commit is contained in:
Cat /dev/Nulo 2021-11-22 12:26:51 -03:00
parent 39f3139242
commit 500723766f
4 changed files with 9 additions and 1 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 157 KiB

View file

@ -31,5 +31,5 @@ riverctl float-filter-add title "Firefox — Sharing Indicator"
~/.config/river/keys ~/.config/river/keys
riverctl spawn "pgrep -x rivertile || rivertile" riverctl spawn "pgrep -x rivertile || rivertile -view-padding 0 -outer-padding 0"
riverctl default-layout rivertile riverctl default-layout rivertile

View file

@ -6,3 +6,7 @@ riverctl border-color-focused 0x$border_focused
riverctl border-color-unfocused 0x$border_unfocused riverctl border-color-unfocused 0x$border_unfocused
riverctl border-width 2 riverctl border-width 2
riverctl spawn 'killall yambar ; yambar' riverctl spawn 'killall yambar ; yambar'
if test -n "$bg"; then
riverctl spawn "killall swaybg ; swaybg --image $bg"
fi

View file

@ -21,11 +21,15 @@ rose_pine () {
" >> ~/.config/river/colors " >> ~/.config/river/colors
} }
mono () { mono () {
if test "$dark" = false; then
bg="export bg=~/.config/river/boyfriends-ships.png"
fi
echo " echo "
export background=$background export background=$background
export border_focused=$foreground export border_focused=$foreground
export border_unfocused=$backgroundish export border_unfocused=$backgroundish
export dark=$dark export dark=$dark
$bg
" >> ~/.config/river/colors " >> ~/.config/river/colors
} }