diff options
author | Manuel Palenzuela <manuelpalenzuelamerino@gmail.com> | 2019-06-14 09:52:05 +0200 |
---|---|---|
committer | Manuel Palenzuela <manuelpalenzuelamerino@gmail.com> | 2019-06-14 09:52:05 +0200 |
commit | ce60720eb49318c43f4e20efb98fe5dd2068a185 (patch) | |
tree | 4115cd63e7e300d41ff3387d2b6b293a7a0ae3dd | |
parent | Added better non-connection display of status bar (diff) | |
download | dwm-ce60720eb49318c43f4e20efb98fe5dd2068a185.tar.gz dwm-ce60720eb49318c43f4e20efb98fe5dd2068a185.tar.bz2 dwm-ce60720eb49318c43f4e20efb98fe5dd2068a185.zip |
Changed mfact and status script
-rw-r--r-- | config.h | 2 | ||||
-rwxr-xr-x | scripts/dwm-status | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/config.h b/config.h index cabc3ef..04fc97f 100644 --- a/config.h +++ b/config.h @@ -45,7 +45,7 @@ static const Rule rules[] = { }; /* layout(s) */ -static const float mfact = 0.55; /* factor of master area size [0.05..0.95] */ +static const float mfact = 0.50; /* factor of master area size [0.05..0.95] */ static const int nmaster = 1; /* number of clients in master area */ static const int resizehints = 1; /* 1 means respect size hints in tiled resizals */ diff --git a/scripts/dwm-status b/scripts/dwm-status index 25ba297..972b161 100755 --- a/scripts/dwm-status +++ b/scripts/dwm-status @@ -148,8 +148,8 @@ status() { \ 8[0-9]|7[0-9]) echo " $(cat $x)%" ;; 6[0-9]|5[0-9]) echo " $(cat $x)%" ;; 4[0-9]|3[0-9]) echo " $(cat $x)%" ;; - 2[0-9]|1[0-9]) echo " $(cat $x)%" ;; - [0-9]) echo " $(cat $x)%" ;; + 2[0-9]|1[0-9]) echo " $(cat $x)%" ;; + [0-9]) echo " $(cat $x)%" ;; esac done && echo "$delim" |