Fedora workstation
1. neovim
nvim
2. shadowsocks-libev
2.1 安装
sudo dnf copr enable -y outman/shadowsocks-libev epel-8-x86_64
2.2 解决依赖libmbedcrypto.so.3的错误
cd /lib64
sudo ln -s libmbedcrypto.so.2.28.0 libmbedcrypto.so.3
3. codecs
应用商店/codecs
4. 词典
4.1 iSearch
https://github.com/louisun/iSearch
4.2 bing()")
依赖pup——命令行基于css的html解析器,下载预编译的程序,解压放入/usr/bin
即可.bashrc
中加入以下内容
bing(){
if [[ $# -eq 0 ]];then
echo "query required"
return 1
elif [[ $# -eq 1 ]];then
query=$1
else
IFS='+'
query="'$*'"
fi
curl -s "https://cn.bing.com/dict/($query)?mkt=zh-CN&setlang=ZH" | pup '.qdef > ul text{}'
}
作者:wuwe1
链接:https://www.zhihu.com/question/42100744/answer/1016638278
来源:知乎
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。