feat(river): QOL improvements

This commit is contained in:
Artur Manuel 2025-01-08 09:10:41 +00:00
commit a065f80c07
4 changed files with 38 additions and 65 deletions

View file

@ -3,8 +3,8 @@
mod="Super"
riverctl spawn kanshi
riverctl spawn "wbg $HOME/.local/share/wallpapers/07.jpg"
riverctl spawn "waybar"
riverctl spawn "swaybg -i $HOME/.local/share/wallpapers/07.jpg -m fill"
riverctl spawn "$HOME/.config/river/scripts/waybar.sh"
riverctl spawn "systemctl --user import-environment WAYLAND_DISPLAY XDG_CURRENT_DESKTOP"
riverctl spawn "dbus-update-activation-environment --systemd WAYLAND_DISPLAY XDG_CURRENT_DESKTOP=river"
@ -85,7 +85,7 @@ riverctl background-color 0x00000000
riverctl border-color-focused 0xbe95ffff
riverctl border-color-unfocused 0x00000000
riverctl keyboard-layout -options compose:ralt gb
riverctl keyboard-layout -options compose:ralt us
riverctl set-repeat 50 300
riverctl xcursor-theme "Simp1e-Adw-Dark"

View file

@ -0,0 +1,7 @@
#!/usr/bin/env bash
pid="$(pidof waybar)"
if [[ -z $pid ]]; then
exec waybar &
fi

View file

@ -17,7 +17,7 @@ in {
enable = true;
xwayland.enable = false;
extraPackages = [
pkgs.wbg
pkgs.swaybg
pkgs.kanshi
pkgs.rivercarro
];