mirror of
https://github.com/Ascyii/scripts.git
synced 2026-01-01 04:44:24 -05:00
9 lines
219 B
Bash
Executable File
9 lines
219 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Prompt user for search query
|
|
query=$(nix-shell -p rofi xdg-utils --run "rofi -dmenu -p 'WebSearch: '")
|
|
|
|
if [[ -n "$query" ]]; then
|
|
xdg-open "https://duckduckgo.com/?q=$(echo $query | sed 's/ /+/g')"
|
|
fi
|