mirror of
https://github.com/tiyn/dotfiles.git
synced 2025-04-01 17:07:45 +02:00
minor changes
This commit is contained in:
parent
29982562de
commit
d677d65fd3
@ -53,8 +53,6 @@ bindsym $mod+Shift+b bar mode toggle
|
|||||||
|
|
||||||
bindsym $mod+Shift+f fullscreen toggle
|
bindsym $mod+Shift+f fullscreen toggle
|
||||||
|
|
||||||
#bindsym $mod+g taken by sxhkd
|
|
||||||
|
|
||||||
bindsym $mod+h focus left
|
bindsym $mod+h focus left
|
||||||
bindsym $mod+Shift+h move left 30
|
bindsym $mod+Shift+h move left 30
|
||||||
|
|
||||||
|
@ -13,8 +13,6 @@ super + e
|
|||||||
super + f
|
super + f
|
||||||
$TERMINAL -e $FILE
|
$TERMINAL -e $FILE
|
||||||
#super + shift + f taken by i3
|
#super + shift + f taken by i3
|
||||||
super + g
|
|
||||||
googlesearch
|
|
||||||
#super + h taken by i3
|
#super + h taken by i3
|
||||||
#super + shift + h taken by i3
|
#super + shift + h taken by i3
|
||||||
super + i
|
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…
x
Reference in New Issue
Block a user