diff options
author | Marvin Borner | 2020-03-26 13:09:48 +0100 |
---|---|---|
committer | Marvin Borner | 2020-03-26 13:09:48 +0100 |
commit | 4c744f6c96499a62ad015ba808accc4a0b4e1f6d (patch) | |
tree | 2747f9068d1175f0909e8cd725853e028514e507 /.repos/dwm/config.h | |
parent | 371ee1add8b18634583f982a06289a7511f9b904 (diff) |
Added network check
Diffstat (limited to '.repos/dwm/config.h')
-rw-r--r-- | .repos/dwm/config.h | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/.repos/dwm/config.h b/.repos/dwm/config.h index 21e9000..bd97d4f 100644 --- a/.repos/dwm/config.h +++ b/.repos/dwm/config.h @@ -3,7 +3,7 @@ /* appearance */ static const unsigned int borderpx = 1; /* border pixel of windows */ static const unsigned int snap = 32; /* snap pixel */ -static const int showbar = 1; /* 0 means no bar */ +static const int showbar = 0; /* 0 means no bar */ static const int topbar = 1; /* 0 means bottom bar */ static const char *fonts[] = { "monospace:size=10" }; static const char dmenufont[] = "monospace:size=10"; @@ -26,9 +26,13 @@ static const Rule rules[] = { * WM_CLASS(STRING) = instance, class * WM_NAME(STRING) = title */ - /* class instance title tags mask isfloating monitor */ - { "QuteBrowser", NULL, NULL, 1 << 2, 0, -1 }, - { "Spotify", NULL, NULL, 1 << 8, 0, -1 }, + /* class instance title tags mask isfloating monitor */ + { "qutebrowser", NULL, NULL, 1 << 0, 0, -1 }, + { "Spotify", NULL, NULL, 1 << 8, 0, -1 }, + { "TelegramDesktop", NULL, NULL, 1 << 7, 0, -1 }, + { "Signal", NULL, NULL, 1 << 7, 0, -1 }, + { "discord", NULL, NULL, 1 << 7, 0, -1 }, + { NULL, NULL, "WhatsApp", 1 << 7, 0, -1 }, }; /* layout(s) */ |