diff options
-rw-r--r-- | dwm.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1654,8 +1654,8 @@ spawn(const Arg *arg) if (arg->v == dmenucmd) dmenumon[0] = '0' + selmon->num; - /* always unset fullscreen when spawning a new window */ - else if(selmon->sel != NULL && selmon->sel->isfullscreen) + /* always unset fullscreen when spawning a new terminal */ + if (arg->v == termcmd && selmon->sel != NULL && selmon->sel->isfullscreen) setfullscreen(selmon->sel, 0); if (fork() == 0) { |