Merge branch 'main' of git.snaile.de:snailed/dwm-custom
Update void-packages template / Update xbps-src template (push) Successful in 44s Details

This commit is contained in:
Luca Bilke 2024-07-23 20:43:53 +02:00
commit 8537d877f2
No known key found for this signature in database
GPG Key ID: C9E851809C1A5BDE
1 changed files with 3 additions and 2 deletions

View File

@ -145,7 +145,7 @@ static const Rule rules[] = {
RULE(.class = "Dragon-drop", .isfloating = 1, .iscentered = 1)
RULE(.class = "St", .isfloating = 0)
RULE(.class = "mpv", .isfloating = 0)
RULE(.class = "Ferdium", .monitor = 1, .tags = 1 << 0)
RULE(.class = "Element", .monitor = 1, .tags = 1 << 0)
RULE(.class = "Thunderbird", .monitor = 1, .tags = 1 << 1)
RULE(.class = "sphelp", .scratchkey = 'h', .isfloating = 1, .iscentered = 1, .floatpos = "50% 50% 50% 90%")
RULE(.class = "spcalc", .scratchkey = 'c', .isfloating = 1, .iscentered = 1, .floatpos = "50% 50% 50% 90%")
@ -162,7 +162,8 @@ static const Rule rules[] = {
static const BarRule barrules[] = {
/* monitor bar alignment widthfunc drawfunc clickfunc hoverfunc name */
{ -1, 0, BAR_ALIGN_LEFT, width_tags, draw_tags, click_tags, hover_tags, "tags" },
{ 'A', 0, BAR_ALIGN_RIGHT, width_status, draw_status, click_status, NULL, "status" },
{ -1, 0, BAR_ALIGN_LEFT, width_ltsymbol, draw_ltsymbol, click_ltsymbol, NULL, "layout" },
{ 0, 0, BAR_ALIGN_RIGHT, width_status, draw_status, click_status, NULL, "status" },
{ -1, 0, BAR_ALIGN_NONE, width_wintitle, draw_wintitle, click_wintitle, NULL, "wintitle" },
};