diff options
| author | TheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com> | 2026-03-26 11:54:40 +0900 |
|---|---|---|
| committer | TheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com> | 2026-03-26 11:54:40 +0900 |
| commit | f08e5ffbad5a8a125f689a30a4f40b40527ca2a6 (patch) | |
| tree | 70513879497695ebf07e6de9eb05aaac9d9d8176 /ar | |
| parent | 80e46b87ad308cfdbecbd8db5bfd0dbdee6b916b (diff) | |
modified statusbar/sb-ecrypt
Diffstat (limited to 'ar')
| -rwxr-xr-x | ar/.local/bin/statusbar/sb-ecrypt | 4 |
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 |
