config

My configuration files and custom scripts.
git clone https://git.tronto.net/config
Download | Log | Files | Refs

commit e541d7b3537fada3f31866d157ff1ea21c627894
parent c1c0691cbd878ee32f950eceef150282980396aa
Author: Sebastiano Tronto <sebastiano@tronto.net>
Date:   Sat,  9 May 2026 22:07:34 +0200

Reduce number of virtual desktops (DWM tags)

Diffstat:
M.config/dwm/config.h | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.config/dwm/config.h b/.config/dwm/config.h @@ -31,7 +31,7 @@ static const char *colors[][3] = { }; /* tagging */ -static const char *tags[] = { "1", "2", "3", "4", "5", "6", "7", "8", "9" }; +static const char *tags[] = { "1", "2", "3", "4" }; static const Rule rules[] = { /* xprop(1): @@ -39,7 +39,7 @@ static const Rule rules[] = { * WM_NAME(STRING) = title */ /* class | instance | title | tagsmask | isfloating | monitor */ - { "TelegramDesktop", NULL, NULL, 1 << 6, 0, -1 }, + { "TelegramDesktop", NULL, NULL, 1 << 3, 0, -1 }, { NULL, NULL, "stfloat", 0, 1, -1 }, { NULL, NULL, "Picture-in-Picture", TAGMASK, 1, -1 }, };