mirror of
https://github.com/LukeSmithxyz/voidrice.git
synced 2026-01-30 09:48:11 +01:00
Compare commits
3 Commits
b22f03d436
...
20fd7ade0d
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
20fd7ade0d | ||
|
|
56304e551d | ||
|
|
2a5cf35142 |
@ -4,6 +4,8 @@ URLQUERY_FILE="$HOME/.local/share/urlquery"
|
||||
CLIPBOARD="xclip -o"
|
||||
ACTION_MENU='@@'
|
||||
|
||||
# For additional search function, see information on open_bookmark function below
|
||||
|
||||
DMENU() {
|
||||
dmenu -i -l $1 -p "$2"
|
||||
}
|
||||
@ -16,7 +18,7 @@ error_notify() {
|
||||
ensure_file_exists() {
|
||||
[ -f "$URLQUERY_FILE" ] || {
|
||||
notify-send "$URLQUERY_FILE does not exist. Creating it now."
|
||||
touch "$URLQUERY_FILE"
|
||||
echo "SearXNG=https://searx.tiekoetter.com/search?q=" > "$URLQUERY_FILE"
|
||||
}
|
||||
}
|
||||
|
||||
@ -83,7 +85,7 @@ open_bookmark() {
|
||||
URL=$(grep "^$SELECTION=" "$URLQUERY_FILE" | cut -d= -f2-)
|
||||
[ -z "$URL" ] && notify-send "Bookmark not found." && exit 1
|
||||
case "$URL" in
|
||||
*"search"*|*"wiki"*)
|
||||
*"search"*|*"wiki"*|*"packages"*) # Add your additional search keywords here similarly.
|
||||
QUERY=$(echo "" | DMENU 0 "Search")
|
||||
URL="${URL}${QUERY}"
|
||||
;;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user