summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com>2026-03-26 11:54:40 +0900
committerTheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com>2026-03-26 11:54:40 +0900
commitf08e5ffbad5a8a125f689a30a4f40b40527ca2a6 (patch)
tree70513879497695ebf07e6de9eb05aaac9d9d8176
parent80e46b87ad308cfdbecbd8db5bfd0dbdee6b916b (diff)
modified statusbar/sb-ecrypt
-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