# HG changeset patch # User Anselm R Garbe # Date 1213176302 -3600 # Node ID decf862df839a633084230b38613f2c65b4568b4 # Parent 218a33808046ad0a9b27b5ec0a7c698439a373de lt will point to a foo-layout during cleanup now (Gottox' suggestion), and togglelayout respects Arg->v diff -r 218a33808046 -r decf862df839 dwm.c --- a/dwm.c Wed Jun 11 09:34:00 2008 +0100 +++ b/dwm.c Wed Jun 11 10:25:02 2008 +0100 @@ -363,8 +363,11 @@ void cleanup(void) { Arg a = {.i = ~0}; + Layout foo = { 0 }; + close(STDIN_FILENO); view(&a); + lt = &foo; while(stack) unmanage(stack); if(dc.font.set) @@ -1476,7 +1479,9 @@ void togglelayout(const Arg *arg) { - if(++lt == &layouts[LENGTH(layouts)]) + if(arg->v) + lt = (Layout *)arg->v; + else if(++lt == &layouts[LENGTH(layouts)]) lt = &layouts[0]; if(sel) arrange();