summaryrefslogtreecommitdiff
path: root/qubes-dwm-6.2/config.h
diff options
context:
space:
mode:
Diffstat (limited to 'qubes-dwm-6.2/config.h')
-rw-r--r--qubes-dwm-6.2/config.h176
1 files changed, 176 insertions, 0 deletions
diff --git a/qubes-dwm-6.2/config.h b/qubes-dwm-6.2/config.h
new file mode 100644
index 0000000..204a1fd
--- /dev/null
+++ b/qubes-dwm-6.2/config.h
@@ -0,0 +1,176 @@
+/*
+Copyright © 2020 tslil clingman
+
+Permission is hereby granted, free of charge, to any person obtaining
+a copy of this software and associated documentation files (the
+“Software”), to deal in the Software without restriction, including
+without limitation the rights to use, copy, modify, merge, publish,
+distribute, sublicense, and/or sell copies of the Software, and to
+permit persons to whom the Software is furnished to do so, subject to
+the following conditions:
+
+The above copyright notice and this permission notice shall be
+included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
+IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
+CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
+TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
+SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+ */
+
+/* appearance */
+static const unsigned int borderpx = 2; /* border pixel of 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 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 rmaster = 0; /* 1 means master-area is initially on the right */
+static const int showbar = 1; /* 0 means no bar */
+static const int topbar = 0; /* 0 means bottom bar */
+static const char *fonts[] = { "Sudo:size=11" };
+static const char col_dom0[] = "#FF7F00";
+static const char col_white[] = "#FFFFFF";
+static const char col_black[] = "#000000";
+static const char col_gray[] = "#c0c0c0";
+/* Dom0 Colors, tagbar and status bar */
+static const char *colors[][2] = {
+ /* fg bg */
+ [SchemeNorm] = { col_black, col_gray },
+ [SchemeSel] = { col_white, col_dom0 },
+};
+
+/* tagging */
+static const char *tags[] = { "L", "U", "Y", ";", "Q", "W", "F", "P", "B" };
+
+static const Rule rules[] = {
+ /* xprop(1):
+ * WM_CLASS(STRING) = instance, class
+ * WM_NAME(STRING) = title
+ */
+ /* class instance title tags-mask isfloating monitor */
+ { NULL, NULL, "Request from ", 0, True, -1}, /* float confirmation dialogs */
+ { NULL, NULL, "Enter tomb password.", 0, True, -1}, /* float password entry dialogs */
+ // { NULL, NULL, NULL, 0, False, -1},
+};
+
+/* layout(s) */
+static const float mfact = 0.55; /* factor of master area size [0.05..0.95], rmaster takes the complement of this? */
+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 Layout layouts[] = {
+ /* symbol arrange function */
+ { "[M]", monocle }, /* first entry is default */
+ { "[D]", deck },
+ { "[]=", tile },
+ { "><>", NULL }, /* no layout function means floating behavior */
+};
+
+/* 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 *dmenu_all[] = { "dmenu_all", "-m", dmenumon, NULL };
+static const char *dmenu_cur[] = { "dmenu_cur", "-m", dmenumon, NULL };
+static const char *term_cur[] = { "sensible_terminal", NULL };
+static const char *term_dom0[] = { "st", NULL };
+
+#include <X11/XF86keysym.h>
+
+// For some reason this registers as battery despite being lock on the keyboard
+#define XF86Battery 0x1008ff93
+static const char *lock[] = { "loginctl", "lock-session" , NULL };
+static const char *togglelock[] = { "toggle_autolock", NULL };
+
+#define XF86MonBrightnessUp 0x1008ff02
+#define XF86MonBrightnessDown 0x1008ff03
+static const char *brightnessup[] = { "xbacklight", "-inc", "3", NULL };
+static const char *brightnessdn[] = { "xbacklight", "-dec", "3", NULL };
+
+static const char *upvol[] = { "/usr/bin/pactl", "set-sink-volume", "0", "+5%", NULL };
+static const char *downvol[] = { "/usr/bin/pactl", "set-sink-volume", "0", "-5%", NULL };
+static const char *mutevol[] = { "/usr/bin/pactl", "set-sink-mute", "0", "toggle", NULL };
+
+static Key keys[] = {
+ /* modifier key function argument */
+
+// Top level keys
+ { 0, XF86MonBrightnessUp, spawn, {.v = brightnessup } },
+ { 0, XF86MonBrightnessDown, spawn, {.v = brightnessdn } },
+ { 0, XF86Battery, spawn, {.v = lock } },
+ { ShiftMask, XF86Battery, spawn, {.v = togglelock } },
+ { 0, XF86XK_AudioLowerVolume, spawn, {.v = downvol } },
+ { 0, XF86XK_AudioMute, spawn, {.v = mutevol } },
+ { 0, XF86XK_AudioRaiseVolume, spawn, {.v = upvol } },
+// Programmes
+ { MODKEY, XK_space, spawn, {.v = dmenu_cur } },
+ { MODKEY|ShiftMask, XK_space, spawn, {.v = dmenu_all} },
+ { MODKEY, XK_t, spawn, {.v = term_cur } },
+ { MODKEY|ShiftMask, XK_t, spawn, {.v = term_dom0 } },
+ { MODKEY, XK_h, spawn, {.v = lock } },
+ { MODKEY|ShiftMask, XK_h, spawn, {.v = togglelock } },
+// Window management
+ { MODKEY, XK_n, focusstack, {.i = +1 } },
+ { MODKEY, XK_o, focusstack, {.i = -1 } },
+ { MODKEY|ShiftMask, XK_i, incnmaster, {.i = +1 } },
+ { MODKEY|ShiftMask, XK_e, incnmaster, {.i = -1 } },
+ { MODKEY, XK_m, togglermaster, {0} },
+ { MODKEY, XK_i, setmfact, {.f = +0.05} },
+ { MODKEY, XK_e, setmfact, {.f = -0.05} },
+ { MODKEY, XK_Return, zoom, {0} },
+ { MODKEY, XK_Tab, view, {0} },
+ { MODKEY|ControlMask, XK_a, setlayout, {.v = &layouts[0]} },
+ { MODKEY|ControlMask, XK_r, setlayout, {.v = &layouts[1]} },
+ { MODKEY|ControlMask, XK_s, setlayout, {.v = &layouts[2]} },
+ { MODKEY|ControlMask, XK_t, setlayout, {.v = &layouts[3]} },
+ { MODKEY, XK_d, togglefloating, {0} },
+ { MODKEY, XK_comma, focusmon, {.i = -1 } },
+ { MODKEY, XK_period, focusmon, {.i = +1 } },
+ { MODKEY|ShiftMask, XK_k, killclient, {0} },
+ { MODKEY|ShiftMask|ControlMask, XK_q, quit, {0} },
+// Tags
+ { MODKEY, XK_0, view, {.ui = ~0 } },
+ { MODKEY|ShiftMask, XK_0, tag, {.ui = ~0 } },
+ { MODKEY|ShiftMask, XK_comma, tagmon, {.i = -1 } },
+ { MODKEY|ShiftMask, XK_period, tagmon, {.i = +1 } },
+ TAGKEYS( XK_l, 0)
+ TAGKEYS( XK_u, 1)
+ TAGKEYS( XK_y, 2)
+ TAGKEYS( XK_semicolon, 3)
+ TAGKEYS( XK_q, 4)
+ TAGKEYS( XK_w, 5)
+ TAGKEYS( XK_f, 6)
+ TAGKEYS( XK_p, 7)
+ TAGKEYS( XK_b, 8)
+};
+
+
+/* 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 = term_dom0 } },
+ { 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} },
+};