summaryrefslogtreecommitdiff
path: root/.w3m/cgi-bin/dictionary.cgi
blob: 3fc2234bdc87c89f7368bee79f4695104d8a4a7d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/usr/bin/env sh
# AUTHOR: gotbletu (@gmail|twitter|youtube|github|lbry|odysee)
#         https://www.youtube.com/user/gotbletu
# DESC:   online dictionary lookup using curl
# DEMO:   https://youtu.be/77qhjaoj_2k
# REQD:   1. chmod +x ~/.w3m/cgi-bin/dictionary.cgi
#         2. sed -i 's@^cgi_bin.*@cgi_bin ~/.w3m/cgi-bin:/usr/lib/w3m/cgi-bin:/usr/local/libexec/w3m/cgi-bin@g' ~/.w3m/config
#         3. sed -i 's@^use_dictcommand.*@use_dictcommand 1@g' ~/.w3m/config
#         4. $EDITOR ~/.w3m/keymap
#            ############################ Execute dictionary command (DICT_WORD)
#            keymap  \\\d    COMMAND "SET_OPTION dictcommand=file:///cgi-bin/dictionary.cgi ; DICT_WORD"
#            ############################ Execute dictionary command for word at cursor (DICT_WORD_AT)
#            keymap  \\\w    COMMAND "SET_OPTION dictcommand=file:///cgi-bin/dictionary.cgi ; DICT_WORD_AT"


echo "w3m-control: READ_SHELL curl -s dict://dict.org/d:$QUERY_STRING"
echo "w3m-control: DELETE_PREVBUF"
echo "w3m-control: REDRAW"