diff options
Diffstat (limited to '.config/guix/modules/dwm/config.def.h')
-rw-r--r-- | .config/guix/modules/dwm/config.def.h | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/.config/guix/modules/dwm/config.def.h b/.config/guix/modules/dwm/config.def.h index 69625a4..214ed2b 100644 --- a/.config/guix/modules/dwm/config.def.h +++ b/.config/guix/modules/dwm/config.def.h @@ -28,7 +28,7 @@ static const unsigned int alphas[][3] = { }; /* tagging */ -static const char *tags[] = { "dev", "brw", "wte", "ws4", "ws5", "ws6", "ws7", "vid", "agd" }; +static const char *tags[] = { "dev", "brw", "doc", "wte", "art", "ws6", "img", "vid", "agd" }; static const Rule rules[] = { /* xprop(1): @@ -36,9 +36,14 @@ static const Rule rules[] = { * WM_NAME(STRING) = title */ /* class instance title tags mask isfloating monitor */ - { "Gimp", NULL, NULL, 0, 1, -1 }, - { "Icecat", NULL, NULL, 1 << 8, 0, -1 }, - { "mpv", NULL, NULL, 1 << 8, 0, -1 }, + { "Emacs", NULL, NULL, 1 << 0, 0, -1 }, + { "Icecat", NULL, NULL, 1 << 1, 0, -1 }, + { "Chromium-browser",NULL,NULL, 1 << 1, 0, -1 }, + { "Zathura", NULL, NULL, 1 << 2, 0, -1 }, + { "libreoffice",NULL, NULL, 1 << 3, 0, -1 }, + { "Gimp", NULL, NULL, 1 << 4, 1, -1 }, + { "Sxiv", NULL, NULL, 1 << 6, 0, -1 }, + { "mpv", NULL, NULL, 1 << 7, 0, -1 }, }; /* layout(s) */ |