AsteroidOS / unofficial-watchfaces

Database of community-made watchfaces for AsteroidOS.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

How to install custom watchfaces on AsteroidOs?

MeVsGOD opened this issue · comments

Can anyone be kind to give step by step instruction to install custom watchfaces on AsteroidOs for windows user.

Used power she'll to execute commands which found on GitHub but I'm new so can't understand what to do tried on power shell
./deploy.sh
But nothing worked for me I definitely made mistake some where please someone tell how I can install custom watchfaces.

commented

Hi, the deploy.sh script is not a Windows shell script.

Explanation

.sh is historically referring to the Bourne shell's executable name sh.
On most UNIX(-like) systems, file extensions don't matter and are more or less for humans to know what a file is all about. So in this case it is a UNIX shell script.
The first line in a shell script, the shebang, indicates which shell should execute the content of the script. In our case bash (#!/bin/bash). Windows does not ship with sh and/or bash. There are solutions like WSL, but it seems like USB is still a no-go.

How to install custom watchfaces without the script

If you have scp on your system you can try following our documentation.

If you don't have scp, you can try using adb instead.
The general syntax is: adb push file.extension /path/on/watch/file.extension

  1. switch to "ADB Mode" in the USB settings.
  2. adb push watchface-name.qml /usr/share/asteroid-launcher/watchfaces/
  3. If the watchface needs fonts you can push them to: /usr/share/fonts/
  4. If the watchface needs other assets just push them to /usr/share/asteroid-launcher/watchfaces/

Thank you so much ❤️ .now I understand.thanks again.