From bd524f38f4d73a72fbbdb186b98c345f29b7dc31 Mon Sep 17 00:00:00 2001 From: TiynGER Date: Sat, 28 Mar 2020 20:15:02 +0100 Subject: [PATCH] adding config --- config.def.h | 98 +++++++++++++++++++++++++++++++++++----------------- 1 file changed, 67 insertions(+), 31 deletions(-) diff --git a/config.def.h b/config.def.h index 1c0b587..0224351 100644 --- a/config.def.h +++ b/config.def.h @@ -1,11 +1,14 @@ /* See LICENSE file for copyright and license details. */ +/* for media keys */ +#include + /* appearance */ static const unsigned int borderpx = 1; /* border pixel of 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 *fonts[] = { "Symbola:size=10" }; static const char dmenufont[] = "monospace:size=10"; static const char col_gray1[] = "#222222"; static const char col_gray2[] = "#444444"; @@ -26,9 +29,10 @@ static const Rule rules[] = { * 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 monitor */ + { "Gimp", NULL, NULL, 0, 1, -1 }, + { "Firefox", NULL, NULL, 1 << 8, 0, -1 }, + { NULL, "de.uol.swp.client.ClientApp", NULL, 0, 1, -1 }, }; /* layout(s) */ @@ -44,7 +48,7 @@ static const Layout layouts[] = { }; /* 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,34 +60,67 @@ static const Layout layouts[] = { /* 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[] = { "dmenu_run", "-c", "-l", "20", NULL }; static const char *termcmd[] = { "st", NULL }; +static const char *browsercmd[] = { "firefox", NULL }; +static const char *filecmd[] = {"st", "-e", "vifm", NULL }; +static const char *javaidecmd[] = {"intellij-idea-ultimate-edition", NULL }; +static const char *mailcmd[] = {"thunderbird", NULL }; +static const char *musiccmd[] = {"st", "-e", "ncmpcpp", NULL }; +static const char *lockcmd[] = {"prompt", "Lock computer?", "slock", NULL }; +static const char *rebootcmd[] = {"prompt", "Reboot computer?", "sudo -A shutdown -h now", NULL }; +static const char *shutdowncmd[] = {"prompt", "Shutdown computer?", "sudo -A shutdown -h now", NULL }; static Key keys[] = { - /* modifier key function argument */ - { MODKEY, XK_p, spawn, {.v = dmenucmd } }, - { MODKEY|ShiftMask, XK_Return, spawn, {.v = termcmd } }, - { MODKEY, XK_b, togglebar, {0} }, - { 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} }, - { 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_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 } }, + /* modifier key function argument */ + { MODKEY|ShiftMask, XK_Escape, quit, {0} }, + { MODKEY, XK_Return, spawn, {.v = termcmd } }, + { MODKEY, XK_b, spawn, {.v = browsercmd } }, + { MODKEY|ShiftMask, XK_b, togglebar, {0} }, + { MODKEY, XK_d, setlayout, {.v = &layouts[1]} }, + { MODKEY, XK_f, spawn, {.v = filecmd } }, + { MODKEY|ShiftMask, XK_f, setlayout, {.v = &layouts[2]} }, + { MODKEY, XK_h, focusstack, {.i = -1 } }, + { MODKEY|ShiftMask, XK_h, zoom, {0} }, + { MODKEY, XK_i, spawn, {.v = javaidecmd } }, + { MODKEY, XK_j, focusstack, {.i = +1 } }, + { MODKEY|ShiftMask, XK_j, zoom, {0} }, + { MODKEY, XK_k, focusstack, {.i = -1 } }, + { MODKEY|ShiftMask, XK_k, zoom, {0} }, + { MODKEY, XK_l, focusstack, {.i = +1 } }, + { MODKEY, XK_m, spawn, {.v = mailcmd } }, + { MODKEY|ShiftMask, XK_o, setmfact, {.f = +0.05} }, + { MODKEY, XK_p, spawn, {.v = musiccmd } }, + { MODKEY, XK_q, killclient, {0} }, + { MODKEY|ShiftMask, XK_r, spawn, {.v = dmenucmd } }, + { MODKEY, XK_s, spawn, SHCMD("startpagesearch") }, + { MODKEY, XK_t, setlayout, {.v = &layouts[0]} }, + { MODKEY, XK_z, setmfact, {.f = -0.05} }, + { MODKEY, XK_F5, spawn, SHCMD("togglemonitor") }, + { MODKEY, XK_F6, spawn, SHCMD("toggletouchpad") }, + { MODKEY, XK_F7, spawn, SHCMD("dmenumount") }, + { MODKEY, XK_F8, spawn, SHCMD("dmenuumount") }, + { MODKEY, XK_F9, spawn, SHCMD("sudo -A systemctl restart NetworkManager") }, + { MODKEY, XK_F10, spawn, {.v = lockcmd } }, + { MODKEY, XK_F11, spawn, {.v = rebootcmd } }, + { MODKEY, XK_F12, spawn, {.v = shutdowncmd } }, + { 0, XF86XK_AudioMute, spawn, SHCMD("lmc m; refbar") }, + { 0, XF86XK_AudioMicMute, spawn, SHCMD("pactl set-source-mute 1 toggle") }, + { 0, XF86XK_AudioLowerVolume, spawn, SHCMD("lmc down 5; refbar") }, + { 0, XF86XK_AudioRaiseVolume, spawn, SHCMD("lmc up 5; refbar") }, + { 0, XF86XK_MonBrightnessDown, spawn, SHCMD("light -U 15") }, + { 0, XF86XK_MonBrightnessUp, spawn, SHCMD("light -A 15") }, + //{ MODKEY|ShiftMask, XK_o, incnmaster, {.i = +1 } }, + //{ MODKEY|ShiftMask, XK_d, togglefloating, {0} }, + //{ MODKEY|ShiftMask, XK_z, incnmaster, {.i = -1 } }, + //{ MODKEY, XK_space, setlayout, {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 } }, + //{ MODKEY, XK_F5, xrdb, {.v = NULL } }, TAGKEYS( XK_1, 0) TAGKEYS( XK_2, 1) TAGKEYS( XK_3, 2) @@ -93,7 +130,6 @@ static Key keys[] = { TAGKEYS( XK_7, 6) TAGKEYS( XK_8, 7) TAGKEYS( XK_9, 8) - { MODKEY|ShiftMask, XK_q, quit, {0} }, }; /* button definitions */