diff options
| author | JaKooLit <ejhay.games@gmail.com> | 2025-02-13 12:56:57 +0900 |
|---|---|---|
| committer | JaKooLit <ejhay.games@gmail.com> | 2025-02-13 12:56:57 +0900 |
| commit | a4c48b0ea0b2b1d474d503fb8d924d190762e999 (patch) | |
| tree | ea3304df1e7df98e173270461b3c90a43cba4b6c /config/hypr/scripts/RofiSearch.sh | |
| parent | dd46262fdfaabebb6fd2213a9baec91dd4244086 (diff) | |
Improvements on the rofi.
Utilized message function for additional informations when script is used in conjunction with rofi
Diffstat (limited to 'config/hypr/scripts/RofiSearch.sh')
| -rwxr-xr-x | config/hypr/scripts/RofiSearch.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/config/hypr/scripts/RofiSearch.sh b/config/hypr/scripts/RofiSearch.sh index d9576a1a..e256253a 100755 --- a/config/hypr/scripts/RofiSearch.sh +++ b/config/hypr/scripts/RofiSearch.sh @@ -5,7 +5,7 @@ # Opens rofi in dmenu mod and waits for input. Then pushes the input to the query of the URL. rofi_theme="$HOME/.config/rofi/config-search.rasi" - +msg='‼️ **note** ‼️ search via default web browser' # Kill Rofi if already running before execution if pgrep -x "rofi" >/dev/null; then pkill rofi @@ -15,4 +15,4 @@ fi # Open rofi with a dmenu and pass the selected item to xdg-open for Google search #echo "" | rofi -dmenu -config "$rofi_config" | xargs -I{} xdg-open "https://www.google.com/search?q={}" -echo "" | rofi -dmenu -config $rofi_theme | xargs -I{} xdg-open "https://www.google.com/search?q={}" +echo "" | rofi -dmenu -config $rofi_theme -mesg "$msg" | xargs -I{} xdg-open "https://www.google.com/search?q={}" |
