diff options
author | Yaroslav <contact@yaroslavps.com> | 2020-06-29 05:46:13 +0300 |
---|---|---|
committer | Yaroslav <contact@yaroslavps.com> | 2020-06-29 05:46:13 +0300 |
commit | 378cab2ec31574daae3f8332cf30924214b58c8f (patch) | |
tree | 776b8bfbdafd5efbf5b573c5785a17bcbd75e501 /dotfiles/.local/bin/menublk | |
parent | 03af81b91d0b5570fb8fe2d33c16edd810637d2b (diff) | |
download | swayrice-378cab2ec31574daae3f8332cf30924214b58c8f.tar.gz swayrice-378cab2ec31574daae3f8332cf30924214b58c8f.zip |
artix-specific stuff; use pacmixer instead of ncpamixer
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 |