1border_active = 0xffffffff
2border_normal = 0xffffffff
3border_width = 2
4
5decor_color = 0xff2a2a2a
6decor_top = 24
7decor_left = 2
8decor_right = 2
9decor_bottom = 2
10decor_title_enabled = true -- turn this off if you dont want decors!!
11decor_title_edge = "top"
12decor_title_align = "center"
13decor_title_color = 0xff8aaa8a
14decor_title_padding = 8
15decor_title_font = "monospace:size=12" -- idk what to set as a default font here so uhhh imma slap monospace here idk lol
16
17motion_throttle_hz = 85
18
19terminal = "foot"
20menu = "neumenu_run"
21
22binds = {
23 { mods="MOD4", key="q", action="spawn", arg=terminal },
24 { mods="MOD4", key="d", action="spawn", arg=menu },
25 { mods="MOD4", key="w", action="spawn", arg=browser },
26 { mods="MOD4", key="e", action="spawn", arg=files },
27 { mods="MOD4", key="b", action="spawn", arg=bluetooth },
28 { mods="MOD4|SHFT", key="s", action="spawn", arg=screenshot },
29 { mods="MOD4", key="Tab", action="focus_next" },
30 { mods="MOD4", key="f", action="fullscreen" },
31 { mods="MOD4", key="c", action="kill" },
32 { mods="MOD4", key="Right", action="move_x", arg=75 },
33 { mods="MOD4", key="Left", action="move_x", arg=-75 },
34 { mods="MOD4", key="Down", action="move_y", arg=75 },
35 { mods="MOD4", key="Up", action="move_y", arg=-75 },
36 { mods="MOD4", key="space", action="center" },
37 { mods="MOD4|SHFT", key="Right", action="resize_width", arg=25 },
38 { mods="MOD4|SHFT", key="Left", action="resize_width", arg=-25 },
39 { mods="MOD4|SHFT", key="Down", action="resize_height", arg=25 },
40 { mods="MOD4|SHFT", key="Up", action="resize_height", arg=-25 },
41 { mods="MOD4", key="h", action="snap_left" },
42 { mods="MOD4", key="l", action="snap_right" },
43 { mods="MOD4|SHFT", key="Return", action="quit" },
44 { mods="MOD4", key="1", action="workspace_goto", arg=1 },
45 { mods="MOD4", key="2", action="workspace_goto", arg=2 },
46 { mods="MOD4", key="3", action="workspace_goto", arg=3 },
47 { mods="MOD4", key="4", action="workspace_goto", arg=4 },
48 { mods="MOD4", key="5", action="workspace_goto", arg=5 },
49 { mods="MOD4", key="6", action="workspace_goto", arg=6 },
50 { mods="MOD4", key="7", action="workspace_goto", arg=7 },
51 { mods="MOD4", key="8", action="workspace_goto", arg=8 },
52 { mods="MOD4", key="9", action="workspace_goto", arg=9 },
53 { mods="MOD4|SHFT", key="1", action="workspace_moveto", arg=1 },
54 { mods="MOD4|SHFT", key="2", action="workspace_moveto", arg=2 },
55 { mods="MOD4|SHFT", key="3", action="workspace_moveto", arg=3 },
56 { mods="MOD4|SHFT", key="4", action="workspace_moveto", arg=4 },
57 { mods="MOD4|SHFT", key="5", action="workspace_moveto", arg=5 },
58 { mods="MOD4|SHFT", key="6", action="workspace_moveto", arg=6 },
59 { mods="MOD4|SHFT", key="7", action="workspace_moveto", arg=7 },
60 { mods="MOD4|SHFT", key="8", action="workspace_moveto", arg=8 },
61 { mods="MOD4|SHFT", key="9", action="workspace_moveto", arg=9 },
62}