mirror of
https://github.com/tiyn/dotfiles.git
synced 2025-03-31 00:17:46 +02:00
dmenu and shortcut changes
This commit is contained in:
parent
002321c6bf
commit
e6b8018faa
@ -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
|
||||||
|
|
||||||
|
20
.local/bin/i3cmds/googlesearch
Executable file
20
.local/bin/i3cmds/googlesearch
Executable file
@ -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…
x
Reference in New Issue
Block a user