Initial release for Sauropod

This commit is contained in:
Aleksey Samoilov 2025-05-29 15:39:16 +04:00
parent d8d1f022c0
commit a75180810a
3 changed files with 19 additions and 12 deletions

7
debian/changelog vendored
View file

@ -1,3 +1,10 @@
tileos-settings-river (2.0.0~tileos) unstable; urgency=medium
* Switch to Wofi as launcher
* Adapt to the new rules system
-- Aleksey Samoilov <samoilov.lex@gmail.com> Thu, 29 May 2025 15:38:25 +0400
tileos-settings-river (1.2.0~tileos) unstable; urgency=medium tileos-settings-river (1.2.0~tileos) unstable; urgency=medium
* Add mic-mute.sh script for toggling microphone on/off * Add mic-mute.sh script for toggling microphone on/off

View file

@ -77,17 +77,17 @@ riverctl border-width 2
# Window rules # Window rules
# Make all views with an app-id that starts with "floating_shell" start floating. # Make all views with an app-id that starts with "floating_shell" start floating.
riverctl float-filter-add app-id "floating_shell" riverctl rule-add -app-id "floating_shell" float
# Set floating view for some apps # Set floating view for some apps
riverctl float-filter-add app-id "engrampa" riverctl rule-add -app-id "engrampa" float
riverctl float-filter-add app-id "calamares" riverctl rule-add -app-id "calamares" float
riverctl float-filter-add app-id "nwg-look" riverctl rule-add -app-id "nwg-look" float
riverctl float-filter-add app-id "qt5ct" riverctl rule-add -app-id "qt5ct" float
riverctl float-filter-add app-id "qt6ct" riverctl rule-add -app-id "qt6ct" float
riverctl float-filter-add app-id "pavucontrol" riverctl rule-add -app-id "pavucontrol" float
riverctl float-filter-add app-id "wdisplays" riverctl rule-add -app-id "wdisplays" float
riverctl float-filter-add title "Picture-in-Picture" riverctl rule-add -title "Picture-in-Picture" float
riverctl float-filter-add title "Firefox — Sharing Indicator" riverctl rule-add -title "Firefox — Sharing Indicator" float
# Set the default layout generator to be rivertile and start it. # Set the default layout generator to be rivertile and start it.
# River will send the process group of the init executable SIGTERM on exit. # River will send the process group of the init executable SIGTERM on exit.

View file

@ -7,7 +7,7 @@ mod="Mod4"
term="alacritty" term="alacritty"
# Application launcher # Application launcher
launcher="eval rofi -show combi -combi-modi 'drun,run' -terminal $term -ssh-command '{terminal} {ssh-client} {host} [-p {port}]' -run-shell-command '{terminal} {cmd}'" launcher="eval wofi --show drun --allow-images --allow-markup --hide-scroll --no-actions -lines 10 -width 35 --term $term --prompt "Search""
# Volume changing notify # Volume changing notify
volume_bar="/usr/share/river/scripts/volume-notify.sh" volume_bar="/usr/share/river/scripts/volume-notify.sh"
@ -29,7 +29,7 @@ riverctl map normal "$mod" Print spawn "/usr/bin/river-grimshot save area - | sw
# riverctl keyboard-layout -options "grp:caps_toggle" "us,ru" # riverctl keyboard-layout -options "grp:caps_toggle" "us,ru"
## Action // Reload River Configuration // $mod+R ## ## Action // Reload River Configuration // $mod+R ##
riverctl map normal $mod R spawn $HOME/.config/river/init riverctl map normal $mod R spawn "$HOME"/.config/river/init
## Launch // Terminal // $mod+Return ## ## Launch // Terminal // $mod+Return ##
riverctl map normal $mod Return spawn $term riverctl map normal $mod Return spawn $term