diff options
-rwxr-xr-x | .config/river/init | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/.config/river/init b/.config/river/init index 2994cd9..625fdcb 100755 --- a/.config/river/init +++ b/.config/river/init @@ -195,16 +195,16 @@ riverctl set-repeat 50 300 bash $HOME/.config/river/autostart.sh # Make all views with an app-id that starts with "float" and title "foo" start floating. -riverctl rule-add float -app-id 'float*' -title 'foo' +riverctl rule-add -app-id 'float*' -title 'foo' float # Make all views with app-id "bar" and any title use client-side decorations riverctl rule-add csd -app-id "bar" # Float mpv when it's started -riverctl rule-add float -app-id 'mpv' -riverctl rule-add ssd -app-id 'libreoffice*' -riverctl rule-add ssd -app-id 'org.pwmt.zathura' -riverctl rule-add ssd -app-id 'imv' +riverctl rule-add -app-id 'mpv' float +riverctl rule-add -app-id 'libreoffice*' ssd +riverctl rule-add -app-id 'org.pwmt.zathura' ssd +riverctl rule-add -app-id 'imv' ssd # Set the default layout generator to be rivertile and start it. # River will send the process group of the init executable SIGTERM on exit. |