diff options
Diffstat (limited to 'bin/mnts')
| -rwxr-xr-x | bin/mnts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/mnts b/bin/mnts index cb1093c..817d372 100755 --- a/bin/mnts +++ b/bin/mnts @@ -14,7 +14,7 @@ for app in awk jq lsblk notify-send udisksctl; do fi done -export MENU_PROMPT="mnts" +export MENU_PROMPT=" mnts" handle() { line=$(awk '{print $0}') @@ -36,5 +36,5 @@ handle() { lsblk -fJ \ | jq -r '.. | select(.uuid?!="" and .name?) | select((.name | test("hibiki|nvme") | not) and .fstype?) | [ .name, .label, .mountpoint // "" ] | @tsv' \ | awk -F'\t' '{printf "/dev/%-10s\t%-15s\t%s\n", $1, $2, $3;}' \ - | menu \ + | menu --list=8 \ | handle |