about summary refs log tree commit diff stats
path: root/config.def.h
diff options
context:
space:
mode:
Diffstat (limited to 'config.def.h')
-rw-r--r--config.def.h128
1 files changed, 92 insertions, 36 deletions
diff --git a/config.def.h b/config.def.h
index 9efa774..71ffcf6 100644
--- a/config.def.h
+++ b/config.def.h
@@ -1,51 +1,66 @@
 /* See LICENSE file for copyright and license details. */
 
+#define SESSION_FILE "/tmp/dwm-session"
+
 /* appearance */
-static const unsigned int borderpx  = 1;        /* border pixel of windows */
+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 int showbar            = 1;        /* 0 means no bar */
-static const int topbar             = 1;        /* 0 means bottom bar */
-static const char *fonts[]          = { "monospace:size=10" };
-static const char dmenufont[]       = "monospace:size=10";
-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 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] = { col_gray3, col_gray1, col_gray2 },
-	[SchemeSel]  = { col_gray4, col_cyan,  col_cyan  },
+    /*               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", "6", "7", "8", "9" };
+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 mask     isfloating   monitor */
-	{ "Gimp",     NULL,       NULL,       0,            1,           -1 },
-	{ "Firefox",  NULL,       NULL,       1 << 8,       0,           -1 },
+	/* class		instance	title           tags mask	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 },
+	{ 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 = 1;    /* 1 means respect size hints in tiled resizals */
+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 */
+//	{ "><>",      NULL },    /* no layout function means floating behavior */
 	{ "[M]",      monocle },
 };
 
 /* key definitions */
-#define MODKEY Mod1Mask
+#define MODKEY Mod4Mask
 #define TAGKEYS(KEY,TAG) \
 	{ MODKEY,                       KEY,      view,           {.ui = 1 << TAG} }, \
 	{ MODKEY|ControlMask,           KEY,      toggleview,     {.ui = 1 << TAG} }, \
@@ -56,29 +71,34 @@ static const Layout layouts[] = {
 #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 *dmenucmd[] = { "rofi", "-show", "drun", "-show-icons", NULL };
 static const char *termcmd[]  = { "st", NULL };
 
+#include <X11/XF86keysym.h>
+#include "movestack.c"
+#include "focusurgent.c"
 static const Key keys[] = {
-	/* modifier                     key        function        argument */
-	{ MODKEY,                       XK_p,      spawn,          {.v = dmenucmd } },
-	{ MODKEY|ShiftMask,             XK_Return, spawn,          {.v = termcmd } },
-	{ MODKEY,                       XK_b,      togglebar,      {0} },
+	/* 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_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,                       XK_Return, zoom,           {0} },
+		/* 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|ShiftMask,             XK_c,      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_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 } },
@@ -95,6 +115,42 @@ static const Key keys[] = {
 	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 ranger") },
+	{ ControlMask,			XK_Escape,	spawn,	SHCMD("st btop") },
+	{ MODKEY,			XK_i,		spawn,	SHCMD("st weechat") },
+	{ MODKEY|ShiftMask,		XK_i,		spawn,	SHCMD("st weechat -a") },
+		/* 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 */
@@ -102,7 +158,7 @@ static const Key keys[] = {
 static const Button buttons[] = {
 	/* click                event mask      button          function        argument */
 	{ ClkLtSymbol,          0,              Button1,        setlayout,      {0} },
-	{ ClkLtSymbol,          0,              Button3,        setlayout,      {.v = &layouts[2]} },
+//	{ ClkLtSymbol,          0,              Button3,        setlayout,      {.v = &layouts[2]} },
 	{ ClkWinTitle,          0,              Button2,        zoom,           {0} },
 	{ ClkStatusText,        0,              Button2,        spawn,          {.v = termcmd } },
 	{ ClkClientWin,         MODKEY,         Button1,        movemouse,      {0} },