diff options
Diffstat (limited to 'dotfiles/.local/bin/menublk')
-rwxr-xr-x | dotfiles/.local/bin/menublk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dotfiles/.local/bin/menublk b/dotfiles/.local/bin/menublk index 3c507ac..cfc1a7b 100755 --- a/dotfiles/.local/bin/menublk +++ b/dotfiles/.local/bin/menublk @@ -42,7 +42,7 @@ get_unmountable() { if [ -z "$mountpoint" ] && [ "$fstype" = "crypto_LUKS" ]; then mountpoint="$(lsblk -r -o MOUNTPOINT "/dev/$name" | tail -n 1)" fi - if [ -n "$mountpoint" ] && [ "$mountpoint" != "/" ] && [ "$mountpoint" != "/boot" ] + if [ -n "$mountpoint" ] && [ "$mountpoint" != "/" ] && [ "$mountpoint" != "/boot" ] && [ "$mountpoint" != "[SWAP]" ] then echo "$name" fi |