diff options
author | Vasil Zlatanov <vasil.zlatanov@gmail.com> | 2016-11-24 14:41:02 +0000 |
---|---|---|
committer | Vasil Zlatanov <vasil.zlatanov@gmail.com> | 2016-11-24 14:41:02 +0000 |
commit | f448749fa10b55d2b819ece0afb6639402bcd76c (patch) | |
tree | 066ba6a9d3cc8426039b9593a98f93cce69cece8 /Panel/lemonbar/panel_bar | |
parent | 7f67f59fe55ba4e9c03ecf20b5114101a81a8624 (diff) | |
download | dotfiles-f448749fa10b55d2b819ece0afb6639402bcd76c.tar.gz dotfiles-f448749fa10b55d2b819ece0afb6639402bcd76c.tar.bz2 dotfiles-f448749fa10b55d2b819ece0afb6639402bcd76c.zip |
massive performance and bug fixes
Diffstat (limited to 'Panel/lemonbar/panel_bar')
-rwxr-xr-x | Panel/lemonbar/panel_bar | 64 |
1 files changed, 32 insertions, 32 deletions
diff --git a/Panel/lemonbar/panel_bar b/Panel/lemonbar/panel_bar index 620d223..3d29d4f 100755 --- a/Panel/lemonbar/panel_bar +++ b/Panel/lemonbar/panel_bar @@ -6,38 +6,38 @@ num_mon=$(bspc query -M | wc -l) . ./icons while read -r line ; do case $line in - Imail) - mbsync -a > /dev/null - if [ `rpws current` -eq 9 ];then - mail='' - else - mail="%{F$COLOR_STATUS_FG}%{B$COLOR_STATUS_BG} ${ICON_MAIL} %{B-}%{F-}" - fi - ;; - - Iface) - if [ `rpws current` -eq 10 ];then - face='' - else - face="%{F$COLOR_STATUS_FG}%{B$COLOR_STATUS_BG} ${ICON_FACE} %{B-}%{F-}" - fi - ;; - - Ipub) - if [ `rpws current` -eq 10 ];then - pub='' - else - pub="%{F$COLOR_STATUS_FG}%{B$COLOR_STATUS_BG} ${ICON_PUB} %{B-}%{F-}" - fi - ;; - - Ipriv) - if [ `rpws current` -eq 10 ];then - priv='' - else - priv="%{F$COLOR_STATUS_FG}%{B$COLOR_STATUS_BG} ${ICON_PRIV} %{B-}%{F-}" - fi - ;; +# Imail) +# mbsync -a > /dev/null +# if [ `rpws current` -eq 9 ];then +# mail='' +# else +# mail="%{F$COLOR_STATUS_FG}%{B$COLOR_STATUS_BG} ${ICON_MAIL} %{B-}%{F-}" +# fi +# ;; +# +# Iface) +# if [ `rpws current` -eq 10 ];then +# face='' +# else +# face="%{F$COLOR_STATUS_FG}%{B$COLOR_STATUS_BG} ${ICON_FACE} %{B-}%{F-}" +# fi +# ;; +# +# Ipub) +# if [ `rpws current` -eq 10 ];then +# pub='' +# else +# pub="%{F$COLOR_STATUS_FG}%{B$COLOR_STATUS_BG} ${ICON_PUB} %{B-}%{F-}" +# fi +# ;; +# +# Ipriv) +# if [ `rpws current` -eq 10 ];then +# priv='' +# else +# priv="%{F$COLOR_STATUS_FG}%{B$COLOR_STATUS_BG} ${ICON_PRIV} %{B-}%{F-}" +# fi +# ;; Iclear) priv="" pub="" |