9 lines
144 B
Plaintext
Raw Normal View History

#!/usr/bin/env zsh
2020-03-14 22:40:36 +01:00
PHRASE=$(printf | dmenu -h 24 -p "Web search:")
if [ -n "$PHRASE" ]; then
qutebrowser $PHRASE &
bspc desktop -f '^3'
fi