diff options
Diffstat (limited to 'dwm-6.3/scripts/dwm-goto')
| -rwxr-xr-x | dwm-6.3/scripts/dwm-goto | 10 |
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 |