From c64e998752edf2c4532d894f1931c34955e36c31 Mon Sep 17 00:00:00 2001 From: Daniel Napora Date: Sun, 19 Jun 2022 20:25:23 +0200 Subject: [PATCH] yhtml fix open dir --- bin/yhtml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/yhtml b/bin/yhtml index 664d630..b7914d3 100755 --- a/bin/yhtml +++ b/bin/yhtml @@ -11,7 +11,7 @@ stdbuf -oL -e0 yad --title="${title}" --window-icon=mbcc --borders=0 \ | while read -r line; do case ${line%:*} in https) xdg-open "${line}" &;; - run) ${line##*/} &;; + run) ${line##*//} &;; config) geany "$HOME/${line#*//}" &;; *) echo "No URI";; esac