minor changes

master
tiynger 5 years ago
parent 8f5cf48eb6
commit 53c1a6c92a

@ -53,8 +53,6 @@ bindsym $mod+Shift+b bar mode toggle
bindsym $mod+Shift+f fullscreen toggle
#bindsym $mod+g taken by sxhkd
bindsym $mod+h focus left
bindsym $mod+Shift+h move left 30

@ -13,8 +13,6 @@ super + e
super + f
$TERMINAL -e $FILE
#super + shift + f taken by i3
super + g
googlesearch
#super + h taken by i3
#super + shift + h taken by i3
super + i

@ -1,20 +0,0 @@
#!/bin/sh
# Gives a dmenu prompt to search DuckDuckGo.
# Without input, will open DuckDuckGo.com.
# URLs will be directly handed to the browser.
# Anything else, it search it.
browser=${BROWSER:-firefox}
pgrep -x dmenu && exit
choice=$(echo "G" | dmenu -i -p "Search Google:") || exit 1
if [ "$choice" = "G" ]; then
$RTV_BROWSER "https://google.com"
else
if echo "$choice" | grep "^(http:\/\/|https:\/\/)?[a-zA-Z0-9]+\.[a-zA-Z]+(/)?.*$"; then
$RTV_BROWSER "$choice"
else
$RTV_BROWSER "https://google.com/search?q=$choice"
fi
fi
Loading…
Cancel
Save