diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2020-11-13 15:43:39 +0100 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2020-11-13 15:43:39 +0100 |
commit | 0946e6e3f99908e69043985f56c0bb72d5663938 (patch) | |
tree | 25b7095b5e1d137d148bd7902f3cb32b2aee3147 | |
parent | Welcome notification update (diff) | |
download | dwm-0946e6e3f99908e69043985f56c0bb72d5663938.tar.gz dwm-0946e6e3f99908e69043985f56c0bb72d5663938.tar.bz2 dwm-0946e6e3f99908e69043985f56c0bb72d5663938.tar.xz dwm-0946e6e3f99908e69043985f56c0bb72d5663938.tar.zst dwm-0946e6e3f99908e69043985f56c0bb72d5663938.zip |
Added alwaysfullscreen patch
-rw-r--r-- | README | 1 | ||||
-rw-r--r-- | README.org | 1 | ||||
-rw-r--r-- | dwm.c | 2 |
3 files changed, 3 insertions, 1 deletions
@@ -53,6 +53,7 @@ Patches List of patches in use: - actualfullscreen - alwayscenter + - alwaysfullscreen - attachasideandbelow - cool-autostart - fibonacci @@ -50,6 +50,7 @@ Some of the main key bindings: List of patches in use: - /actualfullscreen/ - /alwayscenter/ +- /alwaysfullscreen/ - /attachasideandbelow/ - /cool-autostart/ - /fibonacci/ @@ -904,7 +904,7 @@ focusstack(const Arg *arg) { Client *c = NULL, *i; - if (!selmon->sel) + if (!selmon->sel || selmon->sel->isfullscreen) return; if (arg->i > 0) { for (c = selmon->sel->next; c && !ISVISIBLE(c); c = c->next); |