diff options
Diffstat (limited to 'dmenuumount')
-rwxr-xr-x | dmenuumount | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/dmenuumount b/dmenuumount index 6dc25e2..b8da40b 100755 --- a/dmenuumount +++ b/dmenuumount @@ -13,16 +13,8 @@ while getopts "hd:" o; do case "${o}" in *) printhelp ;; esac done -if [ -n "$WAYLAND_DISPLAY" ]; then - DMENU="tofi" - DEFARGS="-c $HOME/.config/tofi/themes/dmenu_vertical --prompt-text" -elif [ -n "$DISPLAY" ]; then - DMENU="dmenu" - DEFARGS="-l 15 -p" -else - print "Can't tell if Wayland or X; what gives?\n" - exit 1 -fi +DMENU="dmenu" +DEFARGS="-l 15 -p" unmountusb() { [ -z "$drives" ] && exit |