diff options
author | Luke Smith <luke@lukesmith.xyz> | 2021-12-11 08:46:15 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-11 08:46:15 -0500 |
commit | 20c5780d14274637bc1e08521fa050c37cedf0df (patch) | |
tree | 1a79cfdcfe5a9829179677bdd735034c0dff6e57 /vanitygaps.c | |
parent | fd66588c52ac54927d27bc56cef4002e0017d2a1 (diff) | |
parent | 6b396d0d8428092363f73d867a122150e0f72ce8 (diff) |
Merge pull request #157 from jglueckstein/toggle-smartgaps
Added function to toggle smartgaps and bound it to Super+Shift+apostrophe
Diffstat (limited to 'vanitygaps.c')
-rw-r--r-- | vanitygaps.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/vanitygaps.c b/vanitygaps.c index 7245e74..4c98e69 100644 --- a/vanitygaps.c +++ b/vanitygaps.c @@ -8,6 +8,7 @@ static void incrgaps(const Arg *arg); /* static void incrihgaps(const Arg *arg); */ /* static void incrivgaps(const Arg *arg); */ static void togglegaps(const Arg *arg); +static void togglesmartgaps(const Arg *arg); /* Layouts */ static void bstack(Monitor *m); @@ -49,6 +50,13 @@ togglegaps(const Arg *arg) } static void +togglesmartgaps(const Arg *arg) +{ + smartgaps = !smartgaps; + arrange(NULL); +} + +static void defaultgaps(const Arg *arg) { setgaps(gappoh, gappov, gappih, gappiv); |