Add some additional utility scripts

This commit is contained in:
Alex Selimov 2025-01-17 20:57:15 -05:00
parent fc5dd7ee14
commit b54da9acda
3 changed files with 1912 additions and 4 deletions

7
bin/search Executable file
View file

@ -0,0 +1,7 @@
#!/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