forked from monroeclinton/mwm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.toml
59 lines (46 loc) · 1.18 KB
/
config.toml
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
59
# Border thickness
border_thickness = 2
# Space between windows
border_gap = 4
# Color of border around windows when active
active_border = 0x56b6c2
# Color of border around windows when inactive
inactive_border = 0x4b5263
# What modifier to switch workspace
workspace_modifier = 0x0008 # key: l-alt
# What modifier to move window to workspace
workspace_move_window_modifier = 0x0009 # key: l-alt + shift
# Autostart the following programs
autostart = [
"statusbar"
]
# List of actions that the window manager handles
[[actions]]
modifier = 0x0009 # key: l-alt + shift
keysym = 0x0063 # key: c
action = "Close"
[[actions]]
modifier = 0x0008 # key: l-alt
keysym = 0x006b # key: k
action = "SelectAbove"
[[actions]]
modifier = 0x0008 # key: l-alt
keysym = 0x006a # key: j
action = "SelectBelow"
[[actions]]
modifier = 0x0008 # key: l-alt
keysym = 0x0068 # key: h
action = "ShrinkFront"
[[actions]]
modifier = 0x0008 # key: l-alt
keysym = 0x006c # key: l
action = "ExpandFront"
# List of commands that are executed
[[commands]]
modifier = 0x0008 # key: l-alt
keysym = 0x0070 # key: p
command = "selector_run"
[[commands]]
modifier = 0x0008 # key: l-alt
keysym = 0x0073 # key: s
command = "st"