Browse Source

startpage now in browser and not random rtv things

master
TiynGER 8 months ago
parent
commit
d126294422
2 changed files with 4 additions and 7 deletions
  1. +3
    -4
      .local/bin/tools/dwm/startpagesearch
  2. +1
    -3
      .xinitrc

+ 3
- 4
.local/bin/tools/dwm/startpagesearch

@ -6,18 +6,17 @@
# Anything else, it search it. # Anything else, it search it.
# original by lukesmithxyz, checkout github.com/lukesmithxyz/voidrice # original by lukesmithxyz, checkout github.com/lukesmithxyz/voidrice
browser=${RTVBROWSER:-firefox}
pgrep -x dmenu && exit pgrep -x dmenu && exit
choice=$(echo "Startpage" | dmenu -i -p "Search Startpage:") || exit 1 choice=$(echo "Startpage" | dmenu -i -p "Search Startpage:") || exit 1
if [ "$choice" = "Startpage" ]; then if [ "$choice" = "Startpage" ]; then
$RTV_BROWSER "https://startpage.com"
$BROWSER "https://startpage.com"
else else
if echo "$choice" | grep "^(http:\/\/|https:\/\/)?[a-zA-Z0-9]+\.[a-zA-Z]+(/)?.*$"; then if echo "$choice" | grep "^(http:\/\/|https:\/\/)?[a-zA-Z0-9]+\.[a-zA-Z]+(/)?.*$"; then
$RTV_BROWSER "$choice"
$BROWSER "$choice"
else else
$RTV_BROWSER "https://startpage.com/do/search/?q=$choice"
$BROWSER "https://startpage.com/do/search/?q=$choice"
fi fi
fi fi

+ 1
- 3
.xinitrc

@ -9,6 +9,4 @@ xrandr --auto
xterm -geometry 80x24+10+10 -fn 10x20 xterm -geometry 80x24+10+10 -fn 10x20
setbg setbg
while :; do
ssh-agent dwm || break
done
exec dwm

Loading…
Cancel
Save