From 9056b6230952b39546e79f97bffd5094763e18d1 Mon Sep 17 00:00:00 2001 From: Luca Bilke Date: Fri, 12 Jul 2024 18:34:07 +0200 Subject: [PATCH 1/2] replace ferdium with element --- config.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.h b/config.h index c76af85..ace20b2 100644 --- a/config.h +++ b/config.h @@ -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%") From 63702acb414525d466805acef6c1c9c29155e380 Mon Sep 17 00:00:00 2001 From: Luca Bilke Date: Sat, 20 Jul 2024 15:30:11 +0200 Subject: [PATCH 2/2] reconfigure status bar --- config.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/config.h b/config.h index fa0f6dc..6e8e2c0 100644 --- a/config.h +++ b/config.h @@ -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" }, };