summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastiano Tronto <sebastiano@tronto.net>2026-05-09 22:07:34 +0200
committerSebastiano Tronto <sebastiano@tronto.net>2026-05-09 22:07:34 +0200
commite541d7b3537fada3f31866d157ff1ea21c627894 (patch)
tree07f414c00c061af0967e563080bc9eb21303b0a1
parentc1c0691cbd878ee32f950eceef150282980396aa (diff)
downloadconfig-e541d7b3537fada3f31866d157ff1ea21c627894.tar.gz
config-e541d7b3537fada3f31866d157ff1ea21c627894.zip
Reduce number of virtual desktops (DWM tags)
-rw-r--r--.config/dwm/config.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/.config/dwm/config.h b/.config/dwm/config.h
index 7539bb7..dd56c43 100644
--- a/.config/dwm/config.h
+++ b/.config/dwm/config.h
@@ -31,7 +31,7 @@ static const char *colors[][3] = {
31}; 31};
32 32
33/* tagging */ 33/* tagging */
34static const char *tags[] = { "1", "2", "3", "4", "5", "6", "7", "8", "9" }; 34static const char *tags[] = { "1", "2", "3", "4" };
35 35
36static const Rule rules[] = { 36static const Rule rules[] = {
37 /* xprop(1): 37 /* xprop(1):
@@ -39,7 +39,7 @@ static const Rule rules[] = {
39 * WM_NAME(STRING) = title 39 * WM_NAME(STRING) = title
40 */ 40 */
41 /* class | instance | title | tagsmask | isfloating | monitor */ 41 /* class | instance | title | tagsmask | isfloating | monitor */
42 { "TelegramDesktop", NULL, NULL, 1 << 6, 0, -1 }, 42 { "TelegramDesktop", NULL, NULL, 1 << 3, 0, -1 },
43 { NULL, NULL, "stfloat", 0, 1, -1 }, 43 { NULL, NULL, "stfloat", 0, 1, -1 },
44 { NULL, NULL, "Picture-in-Picture", TAGMASK, 1, -1 }, 44 { NULL, NULL, "Picture-in-Picture", TAGMASK, 1, -1 },
45}; 45};

Generated with cgit - Back to sebastiano.tronto.net