diff options
Diffstat (limited to 'layout.c')
-rw-r--r-- | layout.c | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -217,6 +217,12 @@ setlayout(const char *arg) { } void +togglebar(const char *arg) { + bpos = (bpos == BarOff) ? BARPOS : BarOff; + updatebarpos(); +} + +void togglemax(const char *arg) { XEvent ev; |