Updated config

Updated the font and tidied up some of the keybinds
master
Ronald1985 5 years ago
parent bb2113a607
commit d417efe45a

@ -5,7 +5,7 @@ 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[] = { "Hack:size=10" };
static const char *fonts[] = { "Iosevka:size=12" };
static const char col_green[] = "#00FF00";
static const char col_lightgray[] = "#eeeeee";
static const char col_black[] = "#000000";
@ -25,7 +25,6 @@ static const Rule rules[] = {
*/
/* class instance title tags mask isfloating monitor */
{ "Nextcloud", NULL, NULL, 1 << 8, 1, -1 },
{ "Mullvad VPN", NULL, NULL, 1 << 8, 1, -1 },
{ "st", "floating", NULL, NULL, 1, -1 },
@ -61,10 +60,9 @@ static const char *termcmd[] = { "st", NULL };
static const char *ftermcmd[] = { "st", "-n", "floating", NULL };
static const char *webcmd[] = { "firefox", NULL };
static const char *notcmd[] = { "notinfo", NULL };
static const char *xcmd[] = { "pkill", "x", NULL };
static const char *mutecmd[] = { "pulsemixer", "--toggle-mute", NULL };
static const char *volcmd[] = { "st", "-e", "alsamixer", NULL };
static const char *volcmd[] = { "st", "-e", "pulsemixer", NULL };
static const char *lockcmd[] = { "slock", NULL };
static const char *filecmd[] = { "st", "-e", "nnn", "-Rd", NULL };
static const char *ffilecmd[] = { "st", "-n", "floating", "-e", "nnn" "-Rd", NULL };
@ -72,10 +70,9 @@ static const char *musiccmd[] = { "st", "-e", "ncmpcpp", NULL };
static const char *ssacmd[] = { "ssall", NULL };
static const char *ssscmd[] = { "ssselection", NULL };
static const char *passcmd[] = { "keepassxc", NULL };
static const char *transcmd[] = { "st", "-e", "stig", NULL };
static const char *mailcmd[] = { "st", "-e", "neomutt", NULL };
static const char *tmuxcmd[] = { "st", "-e", "tmux", "a", NULL };
static const char *htopcmd[] = { "st", "-e", "htop", NULL };
static const char *htopcmd[] = { "st", "-e", "top", NULL };
static const char *nmcmd[] = { "st", "-e", "nmtui", NULL };
static const char *newscmd[] = { "st", "-e", "newsboat", NULL };
static const char *ytpcmd[] = { "st", "-n", "floating", "-e", "ytp", NULL };
@ -85,7 +82,7 @@ static Key keys[] = {
/* modifier key function argument */
{ MODKEY, XK_d, spawn, {.v = dmenucmd } },
{ MODKEY|ShiftMask, XK_Return, spawn, {.v = termcmd } },
{ MODKEY|ControlMask, XK_Return, spawn, {.v = ftermcmd } },
{ MODKEY|ControlMask,XK_Return, spawn, {.v = ftermcmd } },
{ MODKEY, XK_b, togglebar, {0} },
{ MODKEY, XK_j, focusstack, {.i = +1 } },
{ MODKEY, XK_k, focusstack, {.i = -1 } },
@ -120,7 +117,6 @@ static Key keys[] = {
{ MODKEY|ShiftMask, XK_x, spawn, {.v = xcmd } },
{ MODKEY, XK_z, spawn, {.v = lockcmd } },
{ MODKEY, XK_q, spawn, {.v = webcmd } },
{ MODKEY|ShiftMask, XK_t, spawn, {.v = notcmd } },
{ MODKEY, XK_v, spawn, {.v = volcmd } },
{ MODKEY, XK_r, spawn, {.v = filecmd } },
{ MODKEY|ShiftMask, XK_r, spawn, {.v = ffilecmd } },
@ -131,8 +127,7 @@ static Key keys[] = {
{ MODKEY, XK_u, spawn, {.v = htopcmd } },
{ MODKEY|ShiftMask, XK_u, spawn, {.v = tmuxcmd } },
{ MODKEY, XK_p, spawn, {.v = passcmd } },
{ MODKEY, XK_e, spawn, {.v = transcmd } },
{ MODKEY, XK_w, spawn, {.v = mailcmd } },
{ MODKEY|ShiftMask, XK_m, spawn, {.v = mailcmd } },
{ MODKEY, XK_n, spawn, {.v = nmcmd } },
{ MODKEY|ShiftMask, XK_n, spawn, {.v = newscmd } },
{ MODKEY, XK_c, spawn, {.v = mutecmd } },

Loading…
Cancel
Save