From 4e0318919dd726f485ea3a495ff0989f69f35630 Mon Sep 17 00:00:00 2001 From: Nicholas Noll Date: Sat, 6 Jun 2020 19:56:41 -0700 Subject: hand added swallow patch --- sys/cmd/dwm/config.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'sys/cmd/dwm/config.h') diff --git a/sys/cmd/dwm/config.h b/sys/cmd/dwm/config.h index 3e950ba..47ee371 100644 --- a/sys/cmd/dwm/config.h +++ b/sys/cmd/dwm/config.h @@ -5,7 +5,7 @@ static uint borderpx = 1; /* border pixel of windows */ static uint gapx = 4; /* gaps between windows */ static uint snap = 32; /* snap pixel */ -static int swallowfloating = 1; /* will swallow floating by default */ +static int swallowfloating = 0; /* 1 will swallow floating by default */ static int showbar = 1; /* 0 means no bar */ static int topbar = 1; /* 0 means bottom bar */ static char *fonts[] = { "consolas:size=14" }; @@ -30,10 +30,10 @@ static Rule rules[] = { * WM_CLASS(STRING) = instance, class * WM_NAME(STRING) = title */ - /* class instance title tags mask isfloating isterminal noswallow monitor */ - { "Gimp", nil, nil, 0, 1, 0, 0, -1 }, - { "Firefox", nil, nil, 1 << 8, 0, 0, 01, -1 }, - { "term", nil, nil, 0, 0, 0, 1, -1 }, + /* class instance title tags mask isfloating isterminal noswallow monitor */ + { "Gimp", nil, nil, 0, 1, 0, 0, -1 }, + { "qutebrowser", nil, nil, 1 << 8, 0, 0, -1, -1 }, + { "term", nil, nil, 0, 0, 0, -1, -1 }, }; /* layout(s) */ -- cgit v1.2.1