summaryrefslogtreecommitdiff
path: root/dwm-6.3/scripts/dwm-goto
diff options
context:
space:
mode:
Diffstat (limited to 'dwm-6.3/scripts/dwm-goto')
-rwxr-xr-xdwm-6.3/scripts/dwm-goto10
1 files changed, 7 insertions, 3 deletions
diff --git a/dwm-6.3/scripts/dwm-goto b/dwm-6.3/scripts/dwm-goto
index 2033348..c45f9ab 100755
--- a/dwm-6.3/scripts/dwm-goto
+++ b/dwm-6.3/scripts/dwm-goto
@@ -3,6 +3,10 @@
URL=$(cat ~/.config/surf/history.txt | sed 's/^[^ *]* //' | sort -u | dmenu -p "Enter a URL: ")
CMD="firejail --noprofile --hosts-file=~/.config/surf/ads.txt tabbed -dn tabbed-surf -r 2 surf -e '' $URL"
-# saves url to history
-echo $URL >> ~/.config/surf/history.txt
-$CMD
+if [[ -z "$URL" ]]; then
+ exit
+else
+ # saves url to history
+ echo $URL >> ~/.config/surf/history.txt
+ $CMD
+fi