Add partition label to dmenuumount script (#999)
If a partition doesn't have a label, it results in a double space that awk ignores. Which is why the changes include a pipe into sed.
This commit is contained in:
parent
c172efd515
commit
93a9e978da
1 changed files with 1 additions and 1 deletions
|
@ -26,7 +26,7 @@ asktype() { \
|
|||
esac
|
||||
}
|
||||
|
||||
drives=$(lsblk -nrpo "name,type,size,mountpoint" | awk '$4!~/\/boot|\/efi|\/home$|SWAP/&&length($4)>1{printf "%s (%s)\n",$4,$3}')
|
||||
drives=$(lsblk -nrpo "name,type,size,mountpoint,label" | sed 's/ /:/g' | awk -F':' '$4!~/\/boot|\/efi|\/home$|SWAP/&&length($4)>1{printf "%s (%s) %s\n",$4,$3,$5}')
|
||||
|
||||
if ! grep simple-mtpfs /etc/mtab; then
|
||||
[ -z "$drives" ] && echo "No drives to unmount." && exit
|
||||
|
|
Loading…
Reference in a new issue