Formatting.

This commit is contained in:
Bartek Stalewski 2021-07-09 20:29:44 +02:00
parent dee557747f
commit ade14eff8b

View File

@ -21,21 +21,21 @@ 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 },
/* 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;
const char *name;
const void *cmd;
} Sp;
const char *spcmd1[] = {"st", "-n", "spterm", "-g", "120x34", NULL };
const char *spcmd2[] = {"st", "-n", "spfile", "-g", "144x41", "-e", "ranger", NULL };
static Sp scratchpads[] = {
/* name cmd */
{"spterm", spcmd1},
{"spfile", spcmd2},
/* name cmd */
{"spterm", spcmd1},
{"spfile", spcmd2},
};
/* tagging */
@ -56,8 +56,8 @@ static const Rule rules[] = {
{ "Pavucontrol", NULL, NULL, 0, 1, 0, 0, -1 },
{ NULL, NULL, "Citrix Workspace", 1 << 8, 0, 0, 0, -1 },
{ NULL, NULL, "Event Tester", 0, 0, 0, 1, -1 }, /* xev */
{ NULL, "spterm", NULL, SPTAG(0), 1, 1, 0, -1 },
{ NULL, "spfile", NULL, SPTAG(1), 1, 1, 0, -1 },
{ NULL, "spterm", NULL, SPTAG(0), 1, 1, 0, -1 },
{ NULL, "spfile", NULL, SPTAG(1), 1, 1, 0, -1 },
};
/* layout(s) */
@ -67,10 +67,10 @@ static const int resizehints = 0; /* 1 means respect size hints in tiled resi
static const int attachbelow = 1; /* 1 means attach after the currently active window */
static const Layout layouts[] = {
/* symbol arrange function */
{ "[]=", tile }, /* first entry is default */
{ "><>", NULL }, /* no layout function means floating behavior */
{ "[M]", monocle },
/* symbol arrange function */
{ "[]=", tile }, /* first entry is default */
{ "><>", NULL }, /* no layout function means floating behavior */
{ "[M]", monocle },
};
/* key definitions */
@ -79,10 +79,10 @@ static const Layout layouts[] = {
#define CTRKEY (Mod4Mask|ControlMask)
#define ALLKEY (Mod4Mask|ShiftMask|ControlMask)
#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} },
{ 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 } }
@ -94,68 +94,68 @@ static const char *termcmd[] = { "st", NULL };
static Key keys[] = {
/* modifier key function argument */
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)
TAGKEYS( XK_0, 9)
/* apps n'shit */
{ MODKEY, XK_Return, spawn, {.v = termcmd } },
{ MODKEY, XK_space, spawn, SHCMD("rofi -show run -i") },
{ MODKEY, XK_i, spawn, SHCMD("scrot --select 'scrot_%Y-%m-%d_%H-%M-%S_%s.png'") },
{ SHTKEY, XK_i, spawn, SHCMD("scrot 'scrot_%Y-%m-%d_%H-%M-%S_%s.png'") },
{ MODKEY, XK_m, spawn, SHCMD("kill -50 $(pidof dwmblocks)") },
{ MODKEY, XK_q, killclient, {0} },
{ MODKEY, XK_e, togglescratch, {.ui = 0 } },
{ MODKEY, XK_f, togglescratch, {.ui = 1 } },
/* service controls */
{ CTRKEY, XK_b, spawn, SHCMD("rofi-bluetooth") },
{ CTRKEY, XK_d, spawn, SHCMD("rofi_display") },
{ CTRKEY, XK_l, spawn, SHCMD("slock") },
{ CTRKEY, XK_v, spawn, SHCMD("pavucontrol") },
{ CTRKEY, XK_u, spawn, SHCMD("rofi -show emoji") },
/* window controls */
{ SHTKEY, XK_m, zoom, {0} },
{ SHTKEY, XK_h, setmfact, {.f = -0.05} },
{ SHTKEY, XK_l, setmfact, {.f = +0.05} },
{ SHTKEY, XK_j, focusstack, {.i = +1 } },
{ SHTKEY, XK_k, focusstack, {.i = -1 } },
{ SHTKEY, XK_f, togglefloating, {0} },
{ SHTKEY, XK_equal, incnmaster, {.i = +1 } },
{ SHTKEY, XK_minus, incnmaster, {.i = -1 } },
/* main dwm controls */
{ ALLKEY, XK_b, togglebar, {0} },
{ ALLKEY, XK_g, setgaps, {.i = GAP_TOGGLE} },
{ ALLKEY, XK_f, setlayout, {.v = &layouts[1]} },
{ ALLKEY, XK_t, setlayout, {.v = &layouts[0]} },
{ ALLKEY, XK_r, quit, {1} },
{ ALLKEY, XK_q, quit, {0} },
/* only to avoid warnings */
{ MODKEY, XK_comma, focusmon, {.i = -1 } },
{ MODKEY, XK_period, focusmon, {.i = +1 } },
{ SHTKEY, XK_comma, tagmon, {.i = -1 } },
{ SHTKEY, XK_period, tagmon, {.i = +1 } },
{ 0, XF86XK_AudioMute, spawn, SHCMD("pamixer -t; kill -46 $(pidof dwmblocks)") },
{ 0, XF86XK_AudioMicMute, spawn, SHCMD("pactl set-source-mute 0 toggle") },
{ 0, XF86XK_AudioRaiseVolume, spawn, SHCMD("pamixer --allow-boost -i 5; kill -46 $(pidof dwmblocks)") },
{ 0, XF86XK_AudioLowerVolume, spawn, SHCMD("pamixer --allow-boost -d 5; kill -46 $(pidof dwmblocks)") },
{ 0, XF86XK_MonBrightnessUp, spawn, SHCMD("sudo xbacklight -inc 10") },
{ 0, XF86XK_MonBrightnessDown, spawn, SHCMD("sudo xbacklight -dec 10") },
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)
TAGKEYS( XK_0, 9)
/* apps n'shit */
{ MODKEY, XK_Return, spawn, {.v = termcmd } },
{ MODKEY, XK_space, spawn, SHCMD("rofi -show run -i") },
{ MODKEY, XK_i, spawn, SHCMD("scrot --select 'scrot_%Y-%m-%d_%H-%M-%S_%s.png'") },
{ SHTKEY, XK_i, spawn, SHCMD("scrot 'scrot_%Y-%m-%d_%H-%M-%S_%s.png'") },
{ MODKEY, XK_m, spawn, SHCMD("kill -50 $(pidof dwmblocks)") },
{ MODKEY, XK_q, killclient, {0} },
{ MODKEY, XK_e, togglescratch, {.ui = 0 } },
{ MODKEY, XK_f, togglescratch, {.ui = 1 } },
/* service controls */
{ CTRKEY, XK_b, spawn, SHCMD("rofi-bluetooth") },
{ CTRKEY, XK_d, spawn, SHCMD("rofi_display") },
{ CTRKEY, XK_l, spawn, SHCMD("slock") },
{ CTRKEY, XK_v, spawn, SHCMD("pavucontrol") },
{ CTRKEY, XK_u, spawn, SHCMD("rofi -show emoji") },
/* window controls */
{ SHTKEY, XK_m, zoom, {0} },
{ SHTKEY, XK_h, setmfact, {.f = -0.05} },
{ SHTKEY, XK_l, setmfact, {.f = +0.05} },
{ SHTKEY, XK_j, focusstack, {.i = +1 } },
{ SHTKEY, XK_k, focusstack, {.i = -1 } },
{ SHTKEY, XK_f, togglefloating, {0} },
{ SHTKEY, XK_equal, incnmaster, {.i = +1 } },
{ SHTKEY, XK_minus, incnmaster, {.i = -1 } },
/* main dwm controls */
{ ALLKEY, XK_b, togglebar, {0} },
{ ALLKEY, XK_g, setgaps, {.i = GAP_TOGGLE} },
{ ALLKEY, XK_f, setlayout, {.v = &layouts[1]} },
{ ALLKEY, XK_t, setlayout, {.v = &layouts[0]} },
{ ALLKEY, XK_r, quit, {1} },
{ ALLKEY, XK_q, quit, {0} },
/* only to avoid warnings */
{ MODKEY, XK_comma, focusmon, {.i = -1 } },
{ MODKEY, XK_period, focusmon, {.i = +1 } },
{ SHTKEY, XK_comma, tagmon, {.i = -1 } },
{ SHTKEY, XK_period, tagmon, {.i = +1 } },
{ 0, XF86XK_AudioMute, spawn, SHCMD("pamixer -t; kill -46 $(pidof dwmblocks)") },
{ 0, XF86XK_AudioMicMute, spawn, SHCMD("pactl set-source-mute 0 toggle") },
{ 0, XF86XK_AudioRaiseVolume, spawn, SHCMD("pamixer --allow-boost -i 5; kill -46 $(pidof dwmblocks)") },
{ 0, XF86XK_AudioLowerVolume, spawn, SHCMD("pamixer --allow-boost -d 5; kill -46 $(pidof dwmblocks)") },
{ 0, XF86XK_MonBrightnessUp, spawn, SHCMD("sudo xbacklight -inc 10") },
{ 0, XF86XK_MonBrightnessDown, spawn, SHCMD("sudo xbacklight -dec 10") },
};
/* button definitions */
/* click can be ClkTagBar, ClkLtSymbol, ClkStatusText, ClkWinTitle, ClkClientWin, or ClkRootWin */
static Button buttons[] = {
/* click event mask button function argument */
{ ClkTagBar, 0, Button1, view, {0} },
{ ClkTagBar, 0, Button3, toggleview, {0} },
{ ClkLtSymbol, 0, Button1, setlayout, {0} },
{ ClkClientWin, MODKEY, Button1, movemouse, {0} },
{ ClkClientWin, MODKEY, Button2, togglefloating, {0} },
{ ClkClientWin, MODKEY, Button3, resizemouse, {0} },
/* click event mask button function argument */
{ ClkTagBar, 0, Button1, view, {0} },
{ ClkTagBar, 0, Button3, toggleview, {0} },
{ ClkLtSymbol, 0, Button1, setlayout, {0} },
{ ClkClientWin, MODKEY, Button1, movemouse, {0} },
{ ClkClientWin, MODKEY, Button2, togglefloating, {0} },
{ ClkClientWin, MODKEY, Button3, resizemouse, {0} },
};