diff options
author | Justine Smithies <justine@smithies.me.uk> | 2023-10-16 21:41:48 +0100 |
---|---|---|
committer | Justine Smithies <justine@smithies.me.uk> | 2023-10-16 21:41:48 +0100 |
commit | 2de8a8e825a6bbec655bbbf46c6fae8be536e4a2 (patch) | |
tree | 9dd96d4b33f229825c4b53c31093fd10cde0b75b /.config/river | |
parent | 08e8e9038b659acd8a2fb051a918c2cebbe77d6d (diff) |
Updated riverctl rule-add configs to match commit d73ef51 - riverctl: rule-{add,del}: reorder parameters
Diffstat (limited to '.config/river')
-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. |