From 9ca6d27a5775311be4afbac0d4d049c483a7f5d7 Mon Sep 17 00:00:00 2001 From: Luca Bilke Date: Thu, 25 Jul 2024 09:37:38 +0200 Subject: [PATCH] only show layout symbol on active screen --- config.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.h b/config.h index 6e8e2c0..c30d2a8 100644 --- a/config.h +++ b/config.h @@ -162,7 +162,7 @@ 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" }, - { -1, 0, BAR_ALIGN_LEFT, width_ltsymbol, draw_ltsymbol, click_ltsymbol, NULL, "layout" }, + { 'A', 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" }, };