added new patch

This commit is contained in:
hellisabove
2021-10-18 17:45:03 +03:00
parent baddb891d1
commit 7f3d2386b7
7 changed files with 192 additions and 18 deletions
+5 -3
View File
@@ -10,7 +10,8 @@ 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 topbar = 1; /* 0 means bottom bar */
static const char panel[][20] = { "xfce4-panel", "Xfce4-panel" }; /* name & cls of panel win */
static const char *fonts[] = { "monospace:size=12", "fontawesome:size=12" };
static const char dmenufont[] = "monospace:size=11";
//background color
@@ -30,7 +31,7 @@ static const char *colors[][3] = {
};
/* tagging */
//tag names (upper left)
static const char *tags[] = { "", "", "", "", "", "", "", "", "", "" };
static const char *tags[] = { "1", "2", "3", "4", "5" };
static const Rule rules[] = {
/* xprop(1):
@@ -40,6 +41,7 @@ static const Rule rules[] = {
/* class instance title tags mask isfloating monitor */
{ "Gimp", NULL, NULL, 0, 1, -1 },
{ "Firefox", NULL, NULL, 1 << 8, 0, -1 },
{ panel[1], NULL, NULL, (1 << 9) - 1, 0, -1 },
};
@@ -67,7 +69,7 @@ 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[] = { "rofi", "-show", "drun", NULL};
static const char *dmenucmd[] = { "dmenu_run", "-m", dmenumon, "-fn", dmenufont, "-nb", col_gray1, "-nf", col_gray3, "-sb", col_cyan, "-sf", col_gray4, NULL };
//sets st as the default terminal
static const char *termcmd[] = { "st", NULL };
////volume controls