diff options
Diffstat (limited to 'dwm-6.3/scripts/dwm-goto')
| -rwxr-xr-x | dwm-6.3/scripts/dwm-goto | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/dwm-6.3/scripts/dwm-goto b/dwm-6.3/scripts/dwm-goto deleted file mode 100755 index f297b25..0000000 --- a/dwm-6.3/scripts/dwm-goto +++ /dev/null @@ -1,14 +0,0 @@ -#!/bin/sh - -URL=$(cat ~/.config/surf/history.txt | sed 's/^[^ *]* //' | sort -u | dmenu -p "Enter a URL: ") -POSTURL=$(echo $URL | sed 's/-e//; s/reddit.com/old.reddit.com/') -CMD="firejail --noprofile --hosts-file=~/.config/surf/ads.txt tabbed -dn tabbed-surf -r 2 surf -e '' $POSTURL" - -echo $POSTURL -if [[ -z "$URL" ]]; then - exit -else - # saves url to history - echo $URL >> ~/.config/surf/history.txt - $CMD -fi |