all repos — dwm @ 5ad2828c579937afc3dc6da9987587e0eb2473dc

my dwm build

using BarTop as fallback if BARPOS is set to BarOff as default for toggling
Anselm R. Garbe arg@suckless.org
Tue, 15 May 2007 13:49:43 +0200
commit

5ad2828c579937afc3dc6da9987587e0eb2473dc

parent

b896b58d6dbdfc98c0099bd7276e4989527160c6

1 files changed, 6 insertions(+), 1 deletions(-)

jump to
M layout.clayout.c

@@ -218,7 +218,12 @@ }

void togglebar(const char *arg) { - bpos = (bpos == BarOff) ? BARPOS : BarOff; + if(bpos == BarOff) { + if((bpos = BARPOS) == BarOff) + bpos = BarTop; + } + else + bpos = BarOff; updatebarpos(); lt->arrange(); }