|
前言:因网页版微信不继续支持,才出此下策。
1:安装deepin-wine软件仓库
更新软件源 sudo apt-get update
添加deepin-wine仓库
wget -O- https://deepin-wine.i-m.dev/setup.sh | sh
2:安装软件
sudo apt-get install com.qq.weixin.deepin
将com.qq.weixin.deepin替换为下列包名,可以继续安装其他应用:
| 应用 |
包名 |
| 微信 |
com.qq.weixin.deepin |
| QQ |
com.qq.im.deepin |
| TIM |
com.qq.office.deepin |
| 钉钉 |
com.dingtalk.deepin |
| 阿里旺旺 |
com.taobao.wangwang.deepin |
| QQ音乐 |
com.qq.music.deepin |
| QQ视频 |
com.qq.video.deepin |
| 爱奇艺 |
com.iqiyi.deepin |
完整列表参见https://deepin-wine.i-m.dev。
还有一些软件也可以上这个网站查看 http://mirrors.aliyun.com/deepin/pool/non-free/d/
参考链接:https://blog.csdn.net/weixin_38493195/article/details/124870781
3:解决分辨率过小
cd /opt/apps/com.qq.weixin.deepin/entries/applications
sudo gedit com.qq.weixin.deepin.desktop
将文件修改如下(主要是DEEPIN_WINE_SCALE这里):
#!/usr/bin/env xdg-open
[Desktop Entry]
Encoding=UTF-8
Type=Application
X-Created-By=Deepin WINE Team
Categories=chat;
Icon=com.qq.weixin.deepin
Exec=env DEEPIN_WINE_SCALE=2 "/opt/apps/com.qq.weixin.deepin/files/run.sh" -f %f
Name=WeChat
Name[zh_CN]=微信
Comment=Tencent WeChat Client on Deepin Wine6
StartupWMClass=WeChat.exe
MimeType=
参考链接:https://blog.csdn.net/weixinhum/article/details/128023266
来源:https://www.cnblogs.com/buxian/p/18033993 |