blob: 33a61f0ea6b17f946bb1977b4b29809693e3b27e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
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 &
|