X-Git-Url: https://git.xinqibao.xyz/dwm.git/blobdiff_plain/154497541d1378d3aded02df06029de94d8af586..9e56e1ded6889335035c8ffbe2763d3d83978673:/tag.c?ds=sidebyside diff --git a/tag.c b/tag.c index 2311ade..5161ae2 100644 --- a/tag.c +++ b/tag.c @@ -3,6 +3,8 @@ #include #include #include +#include +#include #include /* static */ @@ -23,6 +25,7 @@ RULES static Regs *regs = NULL; static unsigned int nrules = 0; +static char prop[512]; /* extern */ @@ -65,16 +68,32 @@ isvisible(Client *c) { void settags(Client *c, Client *trans) { - char prop[512]; unsigned int i, j; regmatch_t tmp; Bool matched = trans != NULL; XClassHint ch = { 0 }; + XTextProperty name; - if(matched) + if(matched) { for(i = 0; i < ntags; i++) c->tags[i] = trans->tags[i]; + return; + } else { + /* check if window has set a property */ + name.nitems = 0; + XGetTextProperty(dpy, c->win, &name, dwmtags); + if(name.nitems && name.encoding == XA_STRING) { + strncpy(prop, (char *)name.value, sizeof prop - 1); + prop[sizeof prop - 1] = '\0'; + XFree(name.value); + for(i = 0; i < ntags && i < sizeof prop - 1 && prop[i] != '\0'; i++) + if((c->tags[i] = prop[i] == '+')) + matched = True; + } + if(matched) + return; + /* rule matching */ XGetClassHint(dpy, c->win, &ch); snprintf(prop, sizeof prop, "%s:%s:%s", ch.res_class ? ch.res_class : "", @@ -99,24 +118,6 @@ settags(Client *c, Client *trans) { c->tags[i] = seltag[i]; } -void -shiftview(const char *arg) { - int i, j; - - for(i = 0; !seltag[i]; i++); - for(j = i + 1; j < ntags && !seltag[j]; j++); - if(j < ntags) - return; /* more than one tag selected */ - seltag[i] = False; - i += arg ? atoi(arg) : 0; - if(i < 0) - i = ntags - 1; - else if(i >= ntags) - i = 0; - seltag[i] = True; - lt->arrange(); -} - void tag(const char *arg) { int i; @@ -128,7 +129,13 @@ tag(const char *arg) { i = arg ? atoi(arg) : 0; if(i >= 0 && i < ntags) sel->tags[i] = True; - lt->arrange(); + if(sel) { + for(i = 0; i < ntags && i < sizeof prop - 1; i++) + prop[i] = sel->tags[i] ? '+' : '-'; + prop[i] = '\0'; + XChangeProperty(dpy, sel->win, dwmtags, XA_STRING, 8, PropModeReplace, (unsigned char *)prop, i); + } + arrange(); } void @@ -142,7 +149,7 @@ toggletag(const char *arg) { for(j = 0; j < ntags && !sel->tags[j]; j++); if(j == ntags) sel->tags[i] = True; - lt->arrange(); + arrange(); } void @@ -154,7 +161,7 @@ toggleview(const char *arg) { for(j = 0; j < ntags && !seltag[j]; j++); if(j == ntags) seltag[i] = True; /* cannot toggle last view */ - lt->arrange(); + arrange(); } void @@ -166,5 +173,5 @@ view(const char *arg) { i = arg ? atoi(arg) : 0; if(i >= 0 && i < ntags) seltag[i] = True; - lt->arrange(); + arrange(); }