From 187a18feb73ac9a1513a6100a1ffdb5f29f3debe Mon Sep 17 00:00:00 2001 From: zachir Date: Mon, 27 Feb 2023 00:21:09 -0600 Subject: change dmenu books, mount/umount, unicode to use bemenu and not need -w -x flag --- dmenu_books | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) (limited to 'dmenu_books') diff --git a/dmenu_books b/dmenu_books index beb87cc..f24391b 100755 --- a/dmenu_books +++ b/dmenu_books @@ -5,12 +5,23 @@ printhelp () { } while getopts "hwxd:" o; do case "${o}" in - w) DMENU="tofi" ;; + w) DMENU="bemenu" ;; x) DMENU="dmenu" ;; d) ARGS="$ARGS$OPTARG " ;; *) printhelp ;; esac done +if [ -z "$DMENU" ]; then + if [ -n "$WAYLAND_DISPLAY" ]; then + DMENU="bemenu" + elif [ -n "$DISPLAY" ]; then + DMENU="dmene" + else + print "Can't tell if Wayland or X; what gives?\n" + exit 1 + fi +fi + BOOK=`ls ~/Documents/shared | $DMENU $ARGS` [ -z "$BOOK" ] && exit 1 -- cgit v1.2.3