diff options
| -rwxr-xr-x | bin/guiscripts/dmpdf | 5 | 
1 files changed, 3 insertions, 2 deletions
| diff --git a/bin/guiscripts/dmpdf b/bin/guiscripts/dmpdf index e8d4601..56356d7 100755 --- a/bin/guiscripts/dmpdf +++ b/bin/guiscripts/dmpdf @@ -6,9 +6,10 @@ choice="$(\          sed 's|^/home/aluc|\~| ; s|\([^/]\)[^/]*/|\1/|g' "$tmp" |   		awk '{printf "%s %s\n", NR ":", $0}' |   		dmenu -p "pdf:" -l 10 -g 1 -x -i |  -		grep -oE "^[0-9]+:")" +		grep -oE "^[0-9]+:" | +		cut -f1 -d:)"  if [ -z "$choice" ]; then  	exit  fi -file="$(sed -n "${choice::-1}p" "$tmp")" +file="$(sed -n "${choice}p" "$tmp")"  zathura "$file" & | 
