diff options
author | Acid Bong <acid-bong@cock.lt> | 2022-10-19 13:23:34 +0300 |
---|---|---|
committer | Acid Bong <acid-bong@cock.lt> | 2022-10-19 13:23:34 +0300 |
commit | e9c46c8624e3de1fba021c30bbc42707ef51353c (patch) | |
tree | 90e073717f805c2959e99c5f474cd0fed83cd167 /focusurgent.c | |
parent | abd174196e98af390857d3bbc924a3cfac6f27d9 (diff) | |
download | dwm-e9c46c8624e3de1fba021c30bbc42707ef51353c.tar.gz |
patch: focusurgent
Diffstat (limited to 'focusurgent.c')
-rw-r--r-- | focusurgent.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/focusurgent.c b/focusurgent.c new file mode 100644 index 0000000..bc6eee6 --- /dev/null +++ b/focusurgent.c @@ -0,0 +1,14 @@ +static void +focusurgent(const Arg *arg) { + Client *c; + int i; + for(c=selmon->clients; c && !c->isurgent; c=c->next); + if(c) { + for(i=0; i < LENGTH(tags) && !((1 << i) & c->tags); i++); + if(i < LENGTH(tags)) { + const Arg a = {.ui = 1 << i}; + view(&a); + focus(c); + } + } +} |