功能
- 翻译
- 查看文档
- 在搜索引擎中进行快速搜索
原理
- 通过
system settings
->keyboard
->shortcuts
->custom shortcuts
定义快捷键执行指定脚本。
- 通过脚本获取复制/选中的文本,并用浏览器打开
//help_shortKey.sh
words=`xclip -o`
firefox --new-tab http://dict.youdao.com/w/$words
安装
- sudo apt-get install xclip
system settings
->keyboard
->shortcuts
->custom shortcuts
定义快捷键执行指定脚本。 //help_shortKey.sh
words=`xclip -o`
firefox --new-tab http://dict.youdao.com/w/$words