forked from avahe-kellenberger/nimdow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.default.toml
106 lines (84 loc) · 2.04 KB
/
config.default.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
# Start external programs
[[startProcess]]
command = "pkill nimdow"
keys = [ "Delete" ]
modifiers = [ "control", "alt" ]
[[startProcess]]
command = "$BROWSER"
keys = [ "i" ]
modifiers = [ "super" ]
[[startProcess]]
command = "dmenu_run"
keys = [ "p" ]
modifiers = [ "super" ]
[[startProcess]]
command = "st"
keys = [ "Return" ]
modifiers = [ "super" ]
[autostart]
exec = [
#"firefox",
#"st",
]
[settings]
# Window settings
gapSize = 12
borderWidth = 1
borderColorFocused = "#519f50"
borderColorUnfocused = "#1c1b19"
# Bar settings
barHeight = 20
barBackgroundColor = "#1c1b19"
barForegroundColor = "#fce8c3"
barSelectionColor = "#519f50"
barFonts = [
"monospace:size=10:anialias=false",
"NotoColorEmoji:size=10:anialias=false"
]
# Window manager controls
[controls]
[controls.focusPrevious]
keys = [ "k" ]
modifiers = [ "super" ]
[controls.focusNext]
keys = [ "j" ]
modifiers = [ "super" ]
[controls.moveWindowPrevious]
keys = [ "k" ]
modifiers = [ "super", "shift" ]
[controls.moveWindowNext]
keys = [ "j" ]
modifiers = [ "super", "shift" ]
[controls.toggleFullscreen]
keys = [ "f" ]
modifiers = [ "super" ]
[controls.destroySelectedWindow]
keys = [ "q" ]
modifiers = [ "super", "shift" ]
[controls.moveWindowToTag]
keys = [ "1", "2", "3", "4", "5", "6", "7", "8", "9" ]
modifiers = [ "super", "shift" ]
[controls.goToTag]
keys = [ "1", "2", "3", "4", "5", "6", "7", "8", "9" ]
modifiers = [ "super" ]
[controls.focusPreviousMonitor]
keys = [ "comma" ]
modifiers = [ "super" ]
[controls.focusNextMonitor]
keys = [ "period" ]
modifiers = [ "super" ]
[controls.moveWindowToPreviousMonitor]
keys = [ "comma" ]
modifiers = [ "super", "shift" ]
[controls.moveWindowToNextMonitor]
keys = [ "period" ]
modifiers = [ "super", "shift" ]
[controls.increaseMasterCount]
keys = [ "z" ]
modifiers = [ "super" ]
[controls.decreaseMasterCount]
keys = [ "x" ]
modifiers = [ "super" ]
[controls.toggleFloating]
keys = [ "space" ]
modifiers = [ "super" ]