no longer embed dmenu to prevent error if dmenu

has no alpha patch
This commit is contained in:
Luke Smith
2020-04-16 14:48:52 -04:00
parent 1d1fefcd7b
commit 3f44e88d6e
2 changed files with 2 additions and 2 deletions

View File

@ -10,6 +10,6 @@ urls="$(sed 's/.*│//g' | tr -d '\n' |
[ -z "$urls" ] && exit
chosen="$(echo "$urls" | dmenu -w "$(xdotool getactivewindow)" -i -p 'Follow which url?' -l 10)"
chosen="$(echo "$urls" | dmenu -i -p 'Follow which url?' -l 10)"
setsid xdg-open "$chosen" >/dev/null 2>&1 &