/* See LICENSE file for copyright and license details. */ #define SESSION_FILE "/tmp/dwm-session" /* appearance */ static const unsigned int borderpx = 2; /* border pixel of windows */ static const int gappx = 10; /* gaps between windows */ static const unsigned int snap = 32; /* snap pixel */ static const unsigned int systraypinning = 0; /* 0: sloppy systray follows selected monitor, >0: pin systray to monitor X */ static const unsigned int systrayonleft = 0; /* 0: systray in the right corner, >0: systray on left of status text */ static const unsigned int systrayspacing = 2; /* systray spacing */ static const int systraypinningfailfirst = 1; /* 1: if pinning fails, display systray on the first monitor, False: display systray on the last monitor*/ static const int showsystray = 1; /* 0 means no systray */ static const int showbar = 1; /* 0 means no bar */ static const int topbar = 1; /* 0 means bottom bar */ static const int focusonwheel = 0; static const int swallowfloating = 0; /* 1 means swallow floating windows by default */ static const char *fonts[] = { "monospace:size=10", "Symbola:size=10", "Symbols Nerd Font Mono:size=10" }; static const char norm_fg[] = "#f9f5d7"; static const char norm_bg[] = "#1d2021"; static const char norm_border[] = "#555753"; static const char sel_fg[] = "#f9f5d7"; static const char sel_bg[] = "#d65d0e"; static const char sel_border[] = "#d79921"; static const char *colors[][3] = { /* fg bg border */ [SchemeNorm] = { norm_fg, norm_bg, norm_border }, // unfocused wins [SchemeSel] = { sel_fg, sel_bg, sel_border }, // the focused win }; /* tagging */ static const char *tags[] = { "1", "2", "3", "4", "5" }; static const Rule rules[] = { /* xprop(1): * WM_CLASS(STRING) = instance, class * WM_NAME(STRING) = title */ /* class instance title tags isfloating isterminal noswallow monitor */ { "xterm-256color", NULL, NULL, 0, 0, 1, 0, -1 }, { NULL, NULL, "btop", 0, 1, 0, 0, -1 }, { NULL, NULL, "ranger", 0, 1, 1, 0, -1 }, { "KotatogramDesktop", NULL, NULL, 0, 1, 0, 0, -1 }, { "KeePassXC", NULL, NULL, 0, 1, 0, 0, -1 }, { "Gajim", NULL, NULL, 0, 1, 0, 0, -1 }, { NULL, NULL, "Event Tester", 0, 0, 0, 1, -1 }, /* xev */ }; /* 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 */ { "[]=", tile }, /* first entry is default */ // { "><>", 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"; /* i hate it */ static const char *dmenucmd[] = { "rofi", "-show", "drun", "-show-icons", NULL }; static const char *termcmd[] = { "st", NULL }; #include #include "movestack.c" #include "focusurgent.c" static const Key keys[] = { /* modifier key function argument */ { MODKEY, XK_space, spawn, {.v = dmenucmd } }, { MODKEY, XK_Return, spawn, {.v = termcmd } }, /* vim keys */ { MODKEY, XK_j, focusstack, {.i = +1 } }, { MODKEY, XK_k, focusstack, {.i = -1 } }, { MODKEY, XK_h, setmfact, {.f = -0.05} }, { MODKEY, XK_l, setmfact, {.f = +0.05} }, /* arrow keys */ { MODKEY, XK_Down, focusstack, {.i = +1 } }, { MODKEY, XK_Up, focusstack, {.i = -1 } }, { MODKEY, XK_Left, setmfact, {.f = -0.05} }, { MODKEY, XK_Right, setmfact, {.f = +0.05} }, { MODKEY|ShiftMask, XK_s, zoom, {0} }, { MODKEY, XK_Tab, view, {0} }, { MODKEY, XK_backslash, view, {0} }, { MODKEY, XK_q, killclient, {0} }, { MODKEY, XK_m, setlayout, {0} }, { MODKEY|ShiftMask, XK_f, 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 } }, 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_r, quit, {1} }, /* programs */ { MODKEY, XK_w, spawn, SHCMD("firefox") }, { MODKEY, XK_f, spawn, SHCMD("st -e ranger") }, { ControlMask, XK_Escape, spawn, SHCMD("st -e btop") }, /* volume control */ { 0, XF86XK_AudioRaiseVolume, spawn, SHCMD("pamixer -i 5; kill -35 $(pidof dwmblocks)") }, { 0, XF86XK_AudioLowerVolume, spawn, SHCMD("pamixer -d 5; kill -35 $(pidof dwmblocks)") }, { 0, XF86XK_AudioMute, spawn, SHCMD("pamixer -t; kill -35 $(pidof dwmblocks)") }, /* brightness control */ { 0, XF86XK_MonBrightnessUp, spawn, SHCMD("light -A 5; kill -36 $(pidof dwmblocks)") }, { 0, XF86XK_MonBrightnessDown, spawn, SHCMD("light -U 5; kill -36 $(pidof dwmblocks)") }, /* screenshots with scrotre */ { 0, XK_Print, spawn, SHCMD("sqrt -c") }, { ShiftMask, XK_Print, spawn, SHCMD("sqrt") }, { ControlMask, XK_Print, spawn, SHCMD("sqrt -sc") }, { ControlMask|ShiftMask, XK_Print, spawn, SHCMD("sqrt -s") }, { Mod1Mask, XK_Print, spawn, SHCMD("sqrt -ac") }, { Mod1Mask|ShiftMask, XK_Print, spawn, SHCMD("sqrt -a") }, /* MPRIS */ { 0, XF86XK_AudioPlay, spawn, SHCMD("playerctl play-pause") }, { 0, XF86XK_AudioStop, spawn, SHCMD("playerctl stop") }, { 0, XF86XK_AudioPrev, spawn, SHCMD("playerctl previous") }, { 0, XF86XK_AudioNext, spawn, SHCMD("playerctl next") }, /* misc */ { 0, XF86XK_TouchpadToggle, spawn, SHCMD("tp-toggle") }, /* movestack patch */ { MODKEY|ShiftMask, XK_j, movestack, {.i = +1 } }, /* vim keys */ { MODKEY|ShiftMask, XK_k, movestack, {.i = -1 } }, { MODKEY|ShiftMask, XK_Down, movestack, {.i = +1 } }, /* arrow keys */ { MODKEY|ShiftMask, XK_Up, movestack, {.i = -1 } }, /* focusurgent patch */ { MODKEY, XK_a, focusurgent, {0} }, { 0, XF86XK_PowerOff, spawn, SHCMD("notify-send 'turning off your machine, bitch'") }, }; /* button definitions */ /* click can be ClkTagBar, ClkLtSymbol, ClkStatusText, ClkWinTitle, 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]} }, { 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} }, };