From 38f65e2f7c2a07c21401543416644a5a9b2930fa Mon Sep 17 00:00:00 2001 From: Daniel Napora Date: Sun, 30 Aug 2020 18:57:20 +0200 Subject: [PATCH] fix tint/conky-manager --- bin/mb-obthemes | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/bin/mb-obthemes b/bin/mb-obthemes index 929b4fe..f8a72ff 100755 --- a/bin/mb-obthemes +++ b/bin/mb-obthemes @@ -465,8 +465,8 @@ function getConky(){ fi } -function checkConkyzen(){ # see if mb-conkyzen and session file present - if type mb-conkyzen &>/dev/null;then +function checkConkyzen(){ # see if mb-conky-manager and session file present + if type mb-conky-manager &>/dev/null;then if [[ -f $CONKYSESSION ]]; then CZEN=1 # set flag for Restore choice fi @@ -520,7 +520,7 @@ function killTints(){ } function checkTint2zen(){ # see if mb-tint2zen and session file present - if type mb-tint2zen &>/dev/null;then + if type mb-tint2-manager &>/dev/null;then if [[ -f $TINTSESSION ]]; then TZEN=1 # set flag for Restore choice fi @@ -1045,7 +1045,7 @@ function restoreSettings(){ esac done < "$SETCFG" openbox --reconfigure - mb-regenerate-menu + #mb-regenerate-menu restoreSettings }