diff options
Diffstat (limited to 'cfg/river/init')
-rwxr-xr-x | cfg/river/init | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/cfg/river/init b/cfg/river/init new file mode 100755 index 0000000..33a61f0 --- /dev/null +++ b/cfg/river/init @@ -0,0 +1,58 @@ +#!/bin/sh + +# General +riverctl keyboard-layout -options caps:swapescape gb +riverctl set-repeat 120 200 + +# Mapping +riverctl map normal Alt+Shift Q exit +riverctl map normal Alt Q close +riverctl map normal Alt J focus-view next +riverctl map normal Alt K focus-view previous + +# Applications +riverctl map normal Alt+Shift Return spawn foot +riverctl map normal Alt+Shift B spawn $BROWSER +riverctl map normal Alt+Shift C spawn $BROWSER + +# Change window size +riverctl map normal Alt+Shift K resize vertical +10 +riverctl map normal Alt+Shift J resize vertical -10 +riverctl map normal Alt+Shift L resize horizontal +10 +riverctl map normal Alt+Shift H resize horizontal -10 + +# Screenshots +riverctl map normal Alt+Shift S grim + +# Swap windows +riverctl map normal Alt Return swap next + +# Tags +for i in $(seq 1 9) ; do + tags=$((1 << ($i - 1))) + + # Alt+[1-9] to focus tag [0-8] + riverctl map normal Alt $i set-focused-tags $tags + + # Alt+Shift+[1-9] to tag focused view of tag [0-8] + riverctl map normal Alt+Shift $i set-view-tags $tags + + # Alt+Ctrl+[1-9] to toggle focus of tag [0-8] + riverctl map normal Alt+Control $i toggle-focused-tags $tags + + # Alt+Shift+Ctrl+[1-9] to toggle tag [0-8] of focused view + riverctl map normal Alt+Shift+Control $i toggle-view-tags $tags +done + +# Alt+F to toggle fullscreen +riverctl map normal Alt F toggle-fullscreen + +# Alt+Space to toggle float +riverctl map normal Alt Space toggle-float + +# Autostart +wallpaper & +riverctl default-layout rivertile +rivertile & + +waybar & |