Running the AmazFit Watch Face Editor (ZeppOS) on Linux via Wine β Full Guide
Posted: 29 Apr 2025, 18:37
First of all, thanks to @SashaCX75 again for this great tool. Iβm a Linux-only user and wanted to share my experience getting the Watch Face Editor (ZeppOS) viewtopic.php?t=2743 running successfully under Fedora 42 using Wine. This should work similarly on other distributions.
Old Version:
Step-by-step setup process
1. Install Wine and Winetricks (via package manager)
On Fedora:
This will install the latest native Wine (in my case: wine-10.4 (Staging)).
2. Create a clean Wine prefix
- Set Windows version to Windows 7 in the winecfg dialog.
3. Install .NET Framework 4.8
Youβll need to go through several Microsoft .NET installers (4.0 through 4.8). Accept all licenses and click βFinishβ each time. Do not install optional extras.
Installing the Watch Face Editor
Extract the ZIP file (Watch_Face_Editor_(ZeppOS)_v13.1.zip) to a clean folder without spaces or special characters:
How to start the editor
You can start the editor with:
If the filename contains spaces or parentheses, always quote it properly.
Replace YOURUSER with your username.
πΌ Desktop integration (optional)
If you want to launch it from your app menu, create a small shell script like this:
Then create a .desktop file pointing to this script, and place it in ~/.local/share/applications/.
Summary
Hope this guide helps other Linux users to run the Amazfit Watch Face Editor smoothly under Wine!
Updated easier version:
https://amazfitwatchfaces.com/forum/vi ... 438#p22438
Old Version:
Spoiler
1. Install Wine and Winetricks (via package manager)
On Fedora:
Code: Select all
sudo dnf install wine winetricks
2. Create a clean Wine prefix
Code: Select all
export WINEPREFIX=~/wine-amazfit-editor
export WINEARCH=win32
winecfg
3. Install .NET Framework 4.8
Code: Select all
winetricks dotnet48
Extract the ZIP file (Watch_Face_Editor_(ZeppOS)_v13.1.zip) to a clean folder without spaces or special characters:
Code: Select all
mkdir -p ~/WineApps/WatchFaceEditor
unzip "~/Downloads//Watch_Face_Editor_(ZeppOS)_v13.1.zip" -d ~/WineApps/WatchFaceEditor
You can start the editor with:
Code: Select all
WINEPREFIX=~/wine-amazfit-editor wine "home/YOURUSER/WineApps/WatchFaceEditor/Watch_Face_Editor_(ZeppOS).exe"
Replace YOURUSER with your username.
πΌ Desktop integration (optional)
If you want to launch it from your app menu, create a small shell script like this:
Code: Select all
#!/bin/bash
export WINEPREFIX="$HOME/wine-amazfit-editor"
wine "$WINEPREFIX/drive_c/Program Files/WatchFaceEditor/Watch_Face_Editor_(ZeppOS).exe"
| Component | Status |
| Wine Compatibility | |
| .NET 4.8 support | |
| Watch Face Editor GUI | |
| Desktop launcher |
https://amazfitwatchfaces.com/forum/vi ... 438#p22438





