From 0c3fb3d59bcc6189a1e30ec69bc8cb36938eccb8 Mon Sep 17 00:00:00 2001 From: Zoe Roux Date: Sun, 6 Feb 2022 00:07:17 +0100 Subject: [PATCH] Drawing the systray only on the primary monitor since it does not support multimonitor --- config.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.h b/config.h index 3b5efb5..2ebb83e 100644 --- a/config.h +++ b/config.h @@ -59,7 +59,7 @@ static const BarRule barrules[] = { { -1, 0, BAR_ALIGN_LEFT, width_tags, draw_tags, click_tags, "tags" }, { -1, 0, BAR_ALIGN_LEFT, width_ltsymbol, draw_ltsymbol, click_ltsymbol, "layout" }, { -1, 0, BAR_ALIGN_RIGHT, width_status2d, draw_status2d, click_statuscmd, "status2d" }, - { -1, 0, BAR_ALIGN_RIGHT, width_systray, draw_systray, click_systray, "systray" }, + { 'A', 0, BAR_ALIGN_RIGHT, width_systray, draw_systray, click_systray, "systray" }, { -1, 0, BAR_ALIGN_NONE, width_wintitle, draw_wintitle, click_wintitle, "wintitle" }, };