summaryrefslogtreecommitdiff
path: root/ar
diff options
context:
space:
mode:
Diffstat (limited to 'ar')
-rwxr-xr-xar/.local/bin/statusbar/sb-ecrypt4
1 files changed, 3 insertions, 1 deletions
diff --git a/ar/.local/bin/statusbar/sb-ecrypt b/ar/.local/bin/statusbar/sb-ecrypt
index 7b17b81..0b75915 100755
--- a/ar/.local/bin/statusbar/sb-ecrypt
+++ b/ar/.local/bin/statusbar/sb-ecrypt
@@ -14,8 +14,10 @@ mount | grep -q "/mnt/" && mnt_mounted=1
if [ $secret_mounted -eq 1 ] && [ $mnt_mounted -eq 1 ]; then
echo "🔑"
-elif [ $secret_mounted -eq 1 ] || [ $mnt_mounted -eq 1 ]; then
+elif [ $secret_mounted -eq 1 ]; then
echo "🔐"
+elif [ $mnt_mounted -eq 1 ]; then
+ echo "🔏"
else
echo "🔒"
fi