dmenu and shortcut changes

master
tiynger 5 years ago
parent c8c4dc4e92
commit 1915c537e7

@ -668,7 +668,7 @@ ascii_distro="arch_old"
# Example: # Example:
# ascii_colors=(distro) - Ascii is colored based on Distro colors. # ascii_colors=(distro) - Ascii is colored based on Distro colors.
# ascii_colors=(4 6 1 8 8 6) - Ascii is colored using these colors. # ascii_colors=(4 6 1 8 8 6) - Ascii is colored using these colors.
ascii_colors=(44 44 44 44 44 44) ascii_colors=(44 16 0 0 0 0)
# Bold ascii logo # Bold ascii logo
# Whether or not to bold the ascii logo. # Whether or not to bold the ascii logo.

@ -7,13 +7,17 @@ super + b
super + c super + c
code code
super + d super + d
dmenu_run ducksearch
super + f super + f
$TERMINAL -e $FILE $TERMINAL -e $FILE
super + g
googlesearch
super + i super + i
idea idea
super + m super + m
$TERMINAL -e neomutt $TERMINAL -e neomutt
super + r
dmenu_run
super + x super + x
xournalpp xournalpp

@ -0,0 +1,20 @@
#!/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