View Single Post
mosen's Avatar
Community Council | Posts: 1,669 | Thanked: 10,225 times | Joined on Nov 2014 @ Lower Rhine
#23
Originally Posted by karlos devel View Post
Hello @mosen, I just asking why the last nightly build of asteroid still not come with your nice watchfaces?
haha, thanks for the flowers.
I think that will not happen too soon because kido got more important decisions to make atm.
They (dev-team) made some general design decisions regarding the whole ui last year and i do not even know if that decision process is already finished.
Currently, the stock watchfaces are all really simplistic and i can see why mine break the currently intended guidelines quite a bit.
I have 5 more in the works which are all intended to be more straight forward and reworked all of the earlier ones for better readability.
So, yes, it would be great honor if the dev team decides to put some of them into v1.0 release or even nightlys but i am also fine with sideloading them.

I made this script to deploy the watchfaces. just place it in the unofficial-watchface folder after pulling from github.
It will selectively copy the watchfaces, fonts and wallpapers to a connected watch.
Also attached, my personal favourite watchfaces of the unreleased batch, planned for next week after some weekend coding.
And i got a photographer friend to send me some background images he is willing to release under gpl v2.1.

Code:
#!/bin/bash

PS3='Deploy watchface #) or quit with any other key) '

unset options i
while IFS= read -r -d $'\0' f; do
  options[i++]="$f"
done < <(find */ -maxdepth 0 -type d -print0 )

select opt in "${options[@]}"

do
	if [ -e $opt/usr/share/asteroid-launcher/watchfaces/ ]
      then
	    scp $opt/usr/share/asteroid-launcher/watchfaces/* root@192.168.2.15:/usr/share/asteroid-launcher/watchfaces/
	  else
	  	break
      fi

	if [ -e $opt/usr/share/asteroid-launcher/wallpapers/ ]
      then
        scp $opt/usr/share/asteroid-launcher/wallpapers/* root@192.168.2.15:/usr/share/asteroid-launcher/wallpapers/
      fi

 	if [ -e $opt/usr/share/fonts/ ]
      then
        scp $opt/usr/share/fonts/* root@192.168.2.15:/usr/share/fonts/
      fi

done
Attached Images
     
 

The Following 4 Users Say Thank You to mosen For This Useful Post: