summaryrefslogtreecommitdiff
path: root/.local/bin/wrdm
blob: 51dfe6dd0623af05f0de258f193493632886c33f (plain)
1
2
3
4
5
6
7
8
9
#!/bin/sh

# word=$(dmenu -p "Enter Word: " <&-)
word=$(cat ~/.local/bin/words.txt | dmenu -l 25 -p "Choose Word: ")
#$BROWSER https://www.merriam-webster.com/dictionary/$word
if [[ -n $word ]]; then
    $BROWSER "https://www.google.com/search?hl=en&q=define+$word"
fi