diff --git a/.config/river/boyfriends-ships.png b/.config/river/boyfriends-ships.png new file mode 100644 index 0000000..896caf4 Binary files /dev/null and b/.config/river/boyfriends-ships.png differ diff --git a/.config/river/init b/.config/river/init index 9eaff10..ee3136e 100755 --- a/.config/river/init +++ b/.config/river/init @@ -31,5 +31,5 @@ riverctl float-filter-add title "Firefox — Sharing Indicator" ~/.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 diff --git a/.config/river/load-colors b/.config/river/load-colors index a68139f..3fbd897 100755 --- a/.config/river/load-colors +++ b/.config/river/load-colors @@ -6,3 +6,7 @@ riverctl border-color-focused 0x$border_focused riverctl border-color-unfocused 0x$border_unfocused riverctl border-width 2 riverctl spawn 'killall yambar ; yambar' + +if test -n "$bg"; then + riverctl spawn "killall swaybg ; swaybg --image $bg" +fi diff --git a/.config/themer/river-colors.sh b/.config/themer/river-colors.sh index e8ce1a3..5a92110 100755 --- a/.config/themer/river-colors.sh +++ b/.config/themer/river-colors.sh @@ -21,11 +21,15 @@ rose_pine () { " >> ~/.config/river/colors } mono () { + if test "$dark" = false; then + bg="export bg=~/.config/river/boyfriends-ships.png" + fi echo " export background=$background export border_focused=$foreground export border_unfocused=$backgroundish export dark=$dark + $bg " >> ~/.config/river/colors }