summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar piotrruss <mail@pruss.it> 2024-04-07 21:34:06 +0200
committerGravatar piotrruss <mail@pruss.it> 2024-04-07 21:34:06 +0200
commitf99b17bf297d323b3be957faee73768099b3ac26 (patch)
treeebc376291f15762d96975e1612b152e1ee1d8695
parentd174ce218b5f8cdff9ff8ec37ee507f7e237d3cb (diff)
downloaddwm-f99b17bf297d323b3be957faee73768099b3ac26.tar.gz
dwm-f99b17bf297d323b3be957faee73768099b3ac26.tar.bz2
dwm-f99b17bf297d323b3be957faee73768099b3ac26.zip
apply configs
-rw-r--r--config.h166
1 files changed, 166 insertions, 0 deletions
diff --git a/config.h b/config.h
new file mode 100644
index 0000000..bdfd0d9
--- /dev/null
+++ b/config.h
@@ -0,0 +1,166 @@
+/* See LICENSE file for copyright and license details. */
+
+/* appearance */
+static const unsigned int borderpx = 0; /* border pixel of windows */
+static const unsigned int gappx = 20; /* gaps between 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 double activeopacity = 1.0f; /* Window opacity when it's focused (0 <= opacity <= 1) */
+static const double inactiveopacity = 0.85f; /* Window opacity when it's inactive (0 <= opacity <= 1) */
+static Bool bUseOpacity = True; /* Starts with opacity on any unfocused windows */
+static const char *fonts[] = { "Terminus:size=12" };
+static const char dmenufont[] = "Terminus:size=12";
+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[] = "#1793d0";
+static const char *colors[][3] = {
+ /* fg bg border */
+ [SchemeNorm] = { col_gray3, col_gray1, col_gray2 },
+ [SchemeSel] = { col_gray4, col_cyan, col_cyan },
+};
+
+/* tagging */
+static const char *tags[] = { "1", "2", "3", "4", "5", "6", "7", "8", "9" };
+
+static const unsigned int ulinepad = 5; /* horizontal padding between the underline and tag */
+static const unsigned int ulinestroke = 2; /* thickness / height of the underline */
+static const unsigned int ulinevoffset = 0; /* how far above the bottom of the bar the line should appear */
+static const int ulineall = 0; /* 1 to show underline on all tags, 0 for just the active ones */
+
+static const Rule rules[] = {
+ /* xprop(1):
+ * WM_CLASS(STRING) = instance, class
+ * WM_NAME(STRING) = title
+ */
+ /* class instance title tags mask isfloating monitor */
+ { "Gimp", NULL, NULL, 0, 1, -1 },
+ { "Firefox", NULL, NULL, 1 << 8, 0, -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 = 1; /* 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 } }
+
+/* helper for running in terminal */
+#define TERM "st -e "
+
+/* 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[] = { "st", NULL };
+
+static const Key keys[] = {
+ /* modifier key function argument */
+ { MODKEY, XK_d, spawn, {.v = dmenucmd } },
+ { MODKEY, XK_Return, spawn, {.v = termcmd } },
+ { MODKEY|ShiftMask, XK_minus, togglebar, {0} },
+ { MODKEY, XK_j, focusstack, {.i = +1 } },
+ { MODKEY, XK_k, focusstack, {.i = -1 } },
+ { MODKEY, XK_equal, incnmaster, {.i = +1 } },
+ { MODKEY, XK_minus, incnmaster, {.i = -1 } },
+ { MODKEY, XK_h, setmfact, {.f = -0.05} },
+ { MODKEY, XK_l, setmfact, {.f = +0.05} },
+ { MODKEY|ShiftMask, XK_Return, zoom, {0} },
+ { MODKEY, XK_Tab, view, {0} },
+ { MODKEY, XK_q, killclient, {0} },
+ { MODKEY, XK_t, setlayout, {.v = &layouts[0]} },
+ { MODKEY|ShiftMask, XK_f, setlayout, {.v = &layouts[1]} },
+ { MODKEY, XK_m, setlayout, {.v = &layouts[2]} },
+ { MODKEY|ShiftMask, XK_t, setlayout, {.v = &layouts[3]} },
+ { MODKEY, XK_space, setlayout, {0} },
+ { MODKEY|ShiftMask, XK_space, togglefloating, {0} },
+ { MODKEY, XK_0, view, {.ui = ~0 } },
+ { MODKEY|ShiftMask, XK_f, togglefullscr, {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 } },
+ 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|ShiftMask, XK_q, quit, {0} },
+ { MODKEY|ShiftMask, XK_Escape, spawn, SHCMD("lockAndSleep") },
+ /* custom bindings */
+ { MODKEY, XK_w, spawn, SHCMD("firefox") },
+ { MODKEY|ShiftMask, XK_w, spawn, SHCMD("google-chrome-stable") },
+ { MODKEY, XK_e, spawn, SHCMD(TERM "neomutt") },
+ { MODKEY|ShiftMask, XK_e, spawn, SHCMD(TERM "neomutt -e 'source ~/.config/mutt/accounts/gmx'") },
+ { MODKEY, XK_y, spawn, SHCMD(TERM "straw-viewer -7 -C") },
+ { MODKEY|ShiftMask, XK_y, spawn, SHCMD(TERM "straw-viewer -n -C") },
+ /* { MODKEY, XK_u, spawn, SHCMD() }, */
+ { MODKEY|ShiftMask, XK_u, spawn, SHCMD("~/Scripts/mountdevice && pkill -RTMIN+5 dwmblocks") },
+ { MODKEY, XK_p, spawn, SHCMD("passmenu") },
+ { MODKEY|ShiftMask, XK_p, spawn, SHCMD("passoptions") },
+ /* { MODKEY, XK_s, spawn, SHCMD(TERM "") }, */
+ { MODKEY|ShiftMask, XK_s, spawn, SHCMD("~/Scripts/scanDefault") },
+ { MODKEY, XK_b, spawn, SHCMD(TERM "newsboat") },
+ { MODKEY|ShiftMask, XK_b, spawn, SHCMD("~/Scripts/bluetoothtoggle && pkill -RTMIN+6 dwmblocks") },
+ { MODKEY, XK_n, spawn, SHCMD("notes") },
+ { MODKEY|ShiftMask, XK_n, spawn, SHCMD(TERM "~/Scripts/notes_cli") },
+ { MODKEY, XK_x, spawn, SHCMD(TERM "profanity") },
+ { MODKEY|ShiftMask, XK_x, spawn, SHCMD(TERM "sc") },
+ { MODKEY, XK_c, spawn, SHCMD(TERM "calcurse") },
+ { MODKEY|ShiftMask, XK_c, spawn, SHCMD("~/Scripts/camtoggle") },
+ { MODKEY, XK_u, spawn, SHCMD(TERM "ncmpcpp") },
+ { MODKEY|ShiftMask, XK_m, spawn, SHCMD(TERM "pulsemixer") },
+ { MODKEY|ShiftMask, XK_v, spawn, SHCMD("~/Scripts/vpn") },
+ /* { MODKEY|ShiftMask, XK_x, spawn, SHCMD(TERM "") }, */
+ { 0, XK_Print, spawn, SHCMD("maim -s -b 2 ~/Images/Screenshots/$(date '+%Y-%m-%d_%H-%M-%S').jpg && notify-send -t 3000 -u low 'Screenshot saved' '~/Images/Screenshots'") },
+ /* { 0, XF86XK_AudioMute, spawn, SHCMD("pamixer -t && pkill -RTMIN+3 dwmblocks") }, */
+ /* { 0, XF86XK_AudioRaiseVolume, spawn, SHCMD("pamixer -i 5 && pkill -RTMIN+3 dwmblocks") }, */
+ /* { 0, XF86XK_AudioLowerVolume, spawn, SHCMD("pamixer -d 5 && pkill -RTMIN+3 dwmblocks") }, */
+ /* { 0, XF86XK_AudioPlay, spawn, SHCMD("mpc toggle") }, */
+ /* { 0, XF86XK_AudioStop, spawn, SHCMD("mpc stop") }, */
+ /* { 0, XF86XK_AudioPrev, spawn, SHCMD("mpc prev") }, */
+ /* { 0, XF86XK_AudioNext, spawn, SHCMD("mpc next") }, */
+ /* { 0, XF86XK_AudioMicMute, spawn, SHCMD("pactl set-source-mute @DEFAULT_SOURCE@ toggle") }, */
+ /* { 0, XF86XK_MonBrightnessUp, spawn, SHCMD("sudo light -A 5 && pkill -RTMIN+4 dwmblocks") }, */
+ /* { 0, XF86XK_MonBrightnessDown, spawn, SHCMD("sudo light -U 5 && pkill -RTMIN+4 dwmblocks") }, */
+};
+
+/* button definitions */
+/* click can be ClkTagBar, ClkLtSymbol, ClkStatusText, ClkClientWin, or ClkRootWin */
+static const Button buttons[] = {
+ /* click event mask button function argument */
+ { ClkLtSymbol, 0, Button1, setlayout, {0} },
+ { ClkLtSymbol, 0, Button3, setlayout, {.v = &layouts[2]} },
+ { 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} },
+};
+