aboutsummaryrefslogtreecommitdiff
path: root/.repos/dwm/config.h
diff options
context:
space:
mode:
authorMarvin Borner2022-05-31 14:34:49 +0200
committerMarvin Borner2022-05-31 14:39:35 +0200
commita56b6a121b31b82dcf7279e6eea60bbca1852fc5 (patch)
tree7627bb839310c4a4a3632b378ebe87bc031f61ff /.repos/dwm/config.h
parentb8be82d9113dd0fec9021aa573039cc64dbd849a (diff)
Sync
Diffstat (limited to '.repos/dwm/config.h')
-rw-r--r--.repos/dwm/config.h165
1 files changed, 165 insertions, 0 deletions
diff --git a/.repos/dwm/config.h b/.repos/dwm/config.h
new file mode 100644
index 0000000..9c04d02
--- /dev/null
+++ b/.repos/dwm/config.h
@@ -0,0 +1,165 @@
+/* See LICENSE file for copyright and licene details. */
+
+/* appearance */
+static const unsigned int borderpx = 1; /* border pixel of windows */
+static const unsigned int snap = 32; /* snap pixel */
+static const int showbar = 1; /* 0 means no bar */
+static const int topbar = 1; /* 0 means bottom bar */
+static const char *fonts[] = { "Iosevka Term:pixelsize=14:antialias=true:autohint=true" };
+static const char dmenufont[] = "Iosevka Term:pixelsize=14:antialias=true:autohint=true";
+static const char col_gray1[] = "#222222";
+static const char col_gray2[] = "#444444";
+static const char col_gray3[] = "#bbbbbb";
+static const char col_gray4[] = "#eeeeee";
+static const char col_cyan[] = "#005577";
+static const char *colors[][3] = {
+ /* fg bg border */
+ [SchemeNorm] = { col_gray3, col_gray1, col_gray2 },
+ [SchemeSel] = { col_gray4, col_cyan, col_cyan },
+};
+
+typedef struct {
+ const char *name;
+ const void *cmd;
+} Sp;
+const char *spcmd1[] = {"mlterm", "-T", "spterm", "-g", "120x34", NULL };
+const char *spcmd2[] = {"mlterm", "-T", "spcalc", "-e", "python3", "-q", NULL };
+const char *spcmd3[] = {"keepassxc", NULL };
+const char *spcmd4[] = {"mlterm", "-T", "mail", "-g", "150x40", "-e", "neomutt", NULL };
+const char *spcmd5[] = {"/home/melvin/.scripts/weather", "show", NULL };
+const char *spcmd6[] = {"mlterm", "-T", "spalsa", "-e", "alsamixer", NULL };
+const char *spcmd7[] = {"mlterm", "-T", "spcale", "-e", "calcurse", NULL };
+const char *spcmd8[] = {"mlterm", "-T", "sptop", "-e", "htop", NULL };
+static Sp scratchpads[] = {
+ /* name cmd */
+ {"spterm", spcmd1},
+ {"spcalc", spcmd2},
+ {"keepassxc", spcmd3},
+ {"mail", spcmd4},
+ {"weather", spcmd5},
+ {"spalsa", spcmd6},
+ {"spcale", spcmd7},
+ {"sptop", spcmd8},
+};
+
+/* tagging */
+static const char *tags[] = { "1", "2", "3", "4", "5", "6", "7", "8", "9" };
+static const Rule rules[] = {
+ /* xprop(1):
+ * WM_CLASS(STRING) = instance, class
+ * WM_NAME(STRING) = title
+ */
+ /* class instance title tags mask isfloating monitor */
+ { NULL, NULL, "spterm", SPTAG(0), 1, -1 },
+ { NULL, NULL, "spcalc", SPTAG(1), 1, -1 },
+ { NULL, "keepassxc",NULL, SPTAG(2), 1, -1 },
+ { NULL, NULL, "mail", SPTAG(3), 1, -1 },
+ { NULL, NULL, "weather", SPTAG(4), 1, -1 },
+ { NULL, NULL, "spalsa", SPTAG(5), 1, -1 },
+ { NULL, NULL, "spcale", SPTAG(6), 1, -1 },
+ { NULL, NULL, "sptop", SPTAG(7), 1, -1 },
+};
+
+/* layout(s) */
+static const float mfact = 0.55; /* factor of master area size [0.05..0.95] */
+static const int nmaster = 1; /* number of clients in master area */
+static const int resizehints = 0; /* 1 means respect size hints in tiled resizals */
+static const int lockfullscreen = 1; /* 1 will force focus on the fullscreen window */
+
+static const Layout layouts[] = {
+ /* symbol arrange function */
+ { "[T]", tile }, /* first entry is default */
+ { "[F]", NULL }, /* no layout function means floating behavior */
+ { "[M]", monocle },
+};
+
+/* key definitions */
+#define MODKEY Mod4Mask
+#define TAGKEYS(KEY,TAG) \
+ { MODKEY, KEY, view, {.ui = 1 << TAG} }, \
+ { MODKEY|ControlMask, KEY, toggleview, {.ui = 1 << TAG} }, \
+ { MODKEY|ShiftMask, KEY, tag, {.ui = 1 << TAG} }, \
+ { MODKEY|ControlMask|ShiftMask, KEY, toggletag, {.ui = 1 << TAG} },
+
+/* helper for spawning shell commands in the pre dwm-5.0 fashion */
+#define SHCMD(cmd) { .v = (const char*[]){ "/bin/sh", "-c", cmd, NULL } }
+
+/* commands */
+static char dmenumon[2] = "0"; /* component of dmenucmd, manipulated in spawn() */
+static const char *dmenucmd[] = { "dmenu_run", "-m", dmenumon, "-fn", dmenufont, "-nb", col_gray1, "-nf", col_gray3, "-sb", col_cyan, "-sf", col_gray4, NULL };
+static const char *termcmd[] = { "mlterm", NULL };
+
+#include <X11/XF86keysym.h>
+static Key keys[] = {
+ /* modifier key function argument */
+ { MODKEY, XK_p, spawn, {.v = dmenucmd } },
+ { MODKEY, XK_Return, spawn, {.v = termcmd } },
+ { MODKEY, XK_b, togglebar, {0} },
+ { MODKEY, XK_j, focusstack, {.i = +1 } },
+ { MODKEY, XK_k, focusstack, {.i = -1 } },
+ { MODKEY, XK_i, incnmaster, {.i = +1 } },
+ { MODKEY, XK_d, incnmaster, {.i = -1 } },
+ { MODKEY, XK_h, setmfact, {.f = -0.05} },
+ { MODKEY, XK_l, setmfact, {.f = +0.05} },
+ { MODKEY|ShiftMask, XK_j, zoom, {0} },
+ { MODKEY, XK_Tab, view, {0} },
+ { MODKEY, XK_q, killclient, {0} },
+ { MODKEY, XK_t, setlayout, {.v = &layouts[0]} },
+ { MODKEY, XK_f, setlayout, {.v = &layouts[1]} },
+ { MODKEY, XK_m, setlayout, {.v = &layouts[2]} },
+ { MODKEY, XK_space, setlayout, {0} },
+ { MODKEY|ShiftMask, XK_space, togglefloating, {0} },
+ { MODKEY, XK_0, view, {.ui = ~0 } },
+ { MODKEY|ShiftMask, XK_0, tag, {.ui = ~0 } },
+ { MODKEY, XK_comma, focusmon, {.i = -1 } },
+ { MODKEY, XK_period, focusmon, {.i = +1 } },
+ { MODKEY|ShiftMask, XK_comma, tagmon, {.i = -1 } },
+ { MODKEY|ShiftMask, XK_period, tagmon, {.i = +1 } },
+ { MODKEY|ShiftMask, XK_Return, togglescratch, {.ui = 0 } },
+ { MODKEY, XK_apostrophe,togglescratch,{.ui = 1} },
+ { MODKEY|ShiftMask, XK_l, togglescratch, {.ui = 2 } },
+ { MODKEY|ShiftMask, XK_m, togglescratch, {.ui = 3 } },
+ { MODKEY|ShiftMask, XK_w, togglescratch, {.ui = 4 } },
+ { MODKEY|ShiftMask, XK_a, togglescratch, {.ui = 5 } },
+ { MODKEY|ShiftMask, XK_c, togglescratch, {.ui = 6 } },
+ { MODKEY|ShiftMask, XK_h, togglescratch, {.ui = 7 } },
+ TAGKEYS( XK_1, 0)
+ TAGKEYS( XK_2, 1)
+ TAGKEYS( XK_3, 2)
+ TAGKEYS( XK_4, 3)
+ TAGKEYS( XK_5, 4)
+ TAGKEYS( XK_6, 5)
+ TAGKEYS( XK_7, 6)
+ TAGKEYS( XK_8, 7)
+ TAGKEYS( XK_9, 8)
+ { MODKEY|ControlMask|ShiftMask, XK_q, quit, {0} },
+
+ { 0, XF86XK_AudioMute, spawn, SHCMD("amixer set Master toggle") },
+ { 0, XF86XK_AudioRaiseVolume, spawn, SHCMD("amixer set Master 5%+") },
+ { 0, XF86XK_AudioLowerVolume, spawn, SHCMD("amixer set Master 5%-") },
+ { 0, XF86XK_AudioMicMute, spawn, SHCMD("amixer set Capture toggle") },
+ { 0, XF86XK_MonBrightnessDown, spawn, SHCMD("brightnessctl s 50-") },
+ { 0, XF86XK_MonBrightnessUp, spawn, SHCMD("brightnessctl s 50+") },
+ { 0, XF86XK_WLAN, spawn, SHCMD("wifi toggle") },
+ //{ 0, XF86XK_WakeUp, spawn, SHCMD("scrot") },
+ { 0, XF86XK_Display, spawn, SHCMD("screen") },
+ { 0, XF86XK_Favorites, spawn, SHCMD("slock") },
+};
+
+/* button definitions */
+/* click can be ClkTagBar, ClkLtSymbol, ClkStatusText, ClkWinTitle, ClkClientWin, or ClkRootWin */
+static Button buttons[] = {
+ /* click event mask button function argument */
+ { ClkLtSymbol, 0, Button1, setlayout, {0} },
+ { ClkLtSymbol, 0, Button3, setlayout, {.v = &layouts[2]} },
+ { ClkWinTitle, 0, Button2, zoom, {0} },
+ { ClkStatusText, 0, Button2, spawn, {.v = termcmd } },
+ { ClkClientWin, MODKEY, Button1, movemouse, {0} },
+ { ClkClientWin, MODKEY, Button2, togglefloating, {0} },
+ { ClkClientWin, MODKEY, Button3, resizemouse, {0} },
+ { ClkTagBar, 0, Button1, view, {0} },
+ { ClkTagBar, 0, Button3, toggleview, {0} },
+ { ClkTagBar, MODKEY, Button1, tag, {0} },
+ { ClkTagBar, MODKEY, Button3, toggletag, {0} },
+};
+