summaryrefslogtreecommitdiff
path: root/cfg/river/init
diff options
context:
space:
mode:
authorGeorge Abbott <george@gabbott.dev>2025-01-26 11:36:35 +0000
committerGeorge Abbott <george@gabbott.dev>2025-01-26 11:36:35 +0000
commit725f1f1c08c2d7e338d649062622d313292a41fa (patch)
treecddf942baa9a522810ea4d5e1d80ab41150fc994 /cfg/river/init
parente9ab754fdf893b7b71ee7d0fbc84f567984a6bbe (diff)
cfg
Diffstat (limited to 'cfg/river/init')
-rwxr-xr-xcfg/river/init58
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 &