blob: 131484554e1f4743bfc9eed91fee2e4e92d2185f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ ##
# Modified Script for Google Search
# Original Submitted by https://github.com/LeventKaanOguz
# Opens rofi in dmenu mod and waits for input. Then pushes the input to the query of the URL.
#
rofi_config="$HOME/.config/rofi/config-search.rasi"
echo "" | rofi -dmenu -config "$rofi_config" -p "Search:" | xargs -I{} xdg-open https://www.google.com/search?q={}
|