Changes for some items.

- emacs config for fonts wasn't working without custom, for some
 reason.
This commit is contained in:
Sir 2nd Stage Boss Garbagetruck 2021-01-31 02:58:47 +02:00
parent 7ced498c15
commit 23f4721ece
5 changed files with 92 additions and 75 deletions

View file

@ -1,12 +1,11 @@
#!/bin/sh
URL=`dmenu -fn 'mOsOul for Powerline-10' -nb navy -nf chartreuse -sb black -sf orange -p "Url>" -l 8 < ~/bin/urllist`
URL=$(mybemenu < ~/bin/urllist)
if [ $URL ]; then
if [ "$URL" = "clipboard" ]; then
URL=`xclip -o`
URL=$(wl-paste)
fi
export http_proxy=192.168.42.5:8118
tabbed -r2 surf -e -a@Aa -BDfg $URL
badwolf ${URL}
fi