fixed bar icons and some other stuff

This commit is contained in:
ganome 2025-03-15 22:47:53 -06:00
parent f7fa13be5b
commit 98a7c8a544
Signed by untrusted user who does not match committer: Ganome
GPG Key ID: 944DE53336D81B83

View File

@ -103,6 +103,9 @@ static char *colors[][ColCount] = {
static const char *const autostart[] = { static const char *const autostart[] = {
// "st", NULL, // "st", NULL,
"arrpc", NULL,
"swaync", NULL,
"xrdb", "/home/ganome/.Xresources", NULL,
NULL /* terminate */ NULL /* terminate */
}; };
@ -137,7 +140,7 @@ static const char *scratchpadcmd[] = {"s", "kitty", "--name", "spterm", NULL};
*/ */
static char *tagicons[][NUMTAGS] = static char *tagicons[][NUMTAGS] =
{ {
[DEFAULT_TAGS] = { "", "", "", "", "", "", "", "", "" }, [DEFAULT_TAGS] = { "", "", "", "", "", "", "", "", "" },
[ALTERNATIVE_TAGS] = { "A", "B", "C", "D", "E", "F", "G", "H", "I" }, [ALTERNATIVE_TAGS] = { "A", "B", "C", "D", "E", "F", "G", "H", "I" },
[ALT_TAGS_DECORATION] = { "<1>", "<2>", "<3>", "<4>", "<5>", "<6>", "<7>", "<8>", "<9>" }, [ALT_TAGS_DECORATION] = { "<1>", "<2>", "<3>", "<4>", "<5>", "<6>", "<7>", "<8>", "<9>" },
}; };
@ -172,7 +175,7 @@ static const Rule rules[] = {
RULE(.wintype = WTYPE "TOOLBAR", .isfloating = 1) RULE(.wintype = WTYPE "TOOLBAR", .isfloating = 1)
RULE(.wintype = WTYPE "SPLASH", .isfloating = 1) RULE(.wintype = WTYPE "SPLASH", .isfloating = 1)
RULE(.class = "Gimp", .tags = 1 << 4) RULE(.class = "Gimp", .tags = 1 << 4)
RULE(.class = "vivaldi-stable", .tags = 1 << 4) RULE(.class = "Vivaldi-stable", .tags = 1 << 2)
RULE(.instance = "spterm", .scratchkey = 's', .isfloating = 1) RULE(.instance = "spterm", .scratchkey = 's', .isfloating = 1)
}; };
@ -211,10 +214,10 @@ static const int lockfullscreen = 1; /* 1 will force focus on the fullscreen win
static const Layout layouts[] = { static const Layout layouts[] = {
/* symbol arrange function */ /* symbol arrange function */
{ "[\\]", dwindle },
{ "[]=", tile }, /* first entry is default */ { "[]=", tile }, /* first entry is default */
{ "><>", NULL }, /* no layout function means floating behavior */ { "><>", NULL }, /* no layout function means floating behavior */
{ "[M]", monocle }, { "[M]", monocle },
{ "[\\]", dwindle },
{ "HHH", grid }, { "HHH", grid },
}; };