You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
218 B
8 lines
218 B
1 month ago
|
#!/bin/bash
|
||
|
|
||
|
dmenu="dmenu -l 0 -theme-str 'window {width: 80%;}' -i"
|
||
|
query=$(eval "$dmenu")
|
||
|
if [ -n "$query" ]; then
|
||
|
~/builds/zen-x86_64.AppImage --new-window "https://swisscows.com/en/web?query=${query// /+}"
|
||
|
fi
|