1. 程式人生 > >ubuntu下安裝微信客戶端以及建立快捷方式

ubuntu下安裝微信客戶端以及建立快捷方式

1. 安裝微信客戶端

首先,安裝 git 、nodejs 和 npm:

(1) git 安裝:sudo apt-get install git

(2) nodejs 和 npm 安裝:

然後,安裝微信客戶端:

# Clone this repository
git clone https://github.com/geeeeeeeeek/electronic-wechat.git
# Go into the repository
cd electronic-wechat
# Install dependencies and run the app
npm install && npm start

(備註:install那步時間稍微有點久.)

根據自己的作業系統選擇相應的命令打包:

npm run build:osx
npm run build:linux
npm run build:win32
npm run build:win64

這樣,點選/home/rmw/electronic-wechat/dist/electronic-wechat-linux-x64資料夾下的這個就可以執行啦:

2. 建立快捷方式

以上的方法啟動微信有點不太方便,我們可以建立一個快捷方式

cd /usr/share/applications
sudo vim wechat.desktop

我的wechat.desktop內容:

[Desktop Entry]
Categories=Development;
Comment[zh_CN]=
Comment=
Exec=/home/rmw/electronic-wechat/dist/electronic-wechat-linux-x64/electronic-wechat
GenericName[zh_CN]=App
GenericName=App
Icon=/home/rmw/electronic-wechat/assets/icon.png
MimeType=
Name[zh_CN]=微信
Name=wechat
Path=
StartupNotify=true
Terminal=false
Type=Application
X-DBUS-ServiceName=
X-DBUS-StartupType=
X-KDE-SubstituteUID=false
X-KDE-Username=owen

注意Exec和Icon分別為你自己的電腦裡的微信執行檔案位置以及logo位置.

然後把/usr/share/applications裡的wechat圖示複製到桌面就OK啦: