summary refs log tree commit diff
path: root/sowm-config.h
diff options
context:
space:
mode:
authorDruid520 <r.ustydruid520@proton.me>2026-08-14 19:05:57 -0700
committerDruid520 <r.ustydruid520@proton.me>2026-08-14 19:05:57 -0700
commitf7008f118b7af28a4d7754040d23090eff1b7e0c (patch)
treee494fbf4977203675aa0f5ae9a61850d8482a167 /sowm-config.h
parent15aae4388679c800359043212a1a9426f2db7558 (diff)
MOD: upd
Diffstat (limited to 'sowm-config.h')
-rw-r--r--sowm-config.h42
1 files changed, 0 insertions, 42 deletions
diff --git a/sowm-config.h b/sowm-config.h deleted file mode 100644 index 2850a42..0000000 --- a/sowm-config.h +++ /dev/null
@@ -1,42 +0,0 @@
1#ifndef CONFIG_H
2#define CONFIG_H
3#define MOD Mod4Mask
4
5const char* menu[] = {"dmenu_run", "-fn", "Terminus-12", "-nb", "#000000", "-nf", "#ffffff", "-sb", "#ffffff", "-sf", "#000000", 0};
6const char* term[] = {"st", 0};
7const char* scrot[] = {"scrot", 0};
8const char* browser[] = {"st", "links", "https://lite.duckduckgo.com/", 0};
9const char* editor[] = {"st", "em", 0};
10const char* sdbw[] = {"sdbw", 0};
11
12static struct key keys[] = {
13 {MOD, XK_q, win_kill, {0}},
14 {MOD, XK_c, win_center, {0}},
15 {MOD, XK_f, win_fs, {0}},
16
17 {MOD, XK_Tab, win_next, {0}},
18 {MOD|ShiftMask, XK_Tab, win_prev, {0}},
19 {MOD, Button3, win_resize, {0}},
20
21 {MOD, XK_d, run, {.com = menu}},
22 {MOD, XK_p, run, {.com = scrot}},
23 {MOD, XK_Return, run, {.com = term}},
24 {MOD, XK_b, run, {.com = browser}},
25 {MOD, XK_e, run, {.com = editor}},
26 {MOD, XK_w, run, {.com = sdbw}},
27
28 {MOD, XK_1, ws_go, {.i = 1}},
29 {MOD|ShiftMask, XK_1, win_to_ws, {.i = 1}},
30 {MOD, XK_2, ws_go, {.i = 2}},
31 {MOD|ShiftMask, XK_2, win_to_ws, {.i = 2}},
32 {MOD, XK_3, ws_go, {.i = 3}},
33 {MOD|ShiftMask, XK_3, win_to_ws, {.i = 3}},
34 {MOD, XK_4, ws_go, {.i = 4}},
35 {MOD|ShiftMask, XK_4, win_to_ws, {.i = 4}},
36 {MOD, XK_5, ws_go, {.i = 5}},
37 {MOD|ShiftMask, XK_5, win_to_ws, {.i = 5}},
38 {MOD, XK_6, ws_go, {.i = 6}},
39 {MOD|ShiftMask, XK_6, win_to_ws, {.i = 6}},
40};
41
42#endif