1 - Can you add an option to disable the lower left notifications icon? So many watch faces let you customise everything EXCEPT the notifications, which is really annoying (for me). I get so many emails and updates throughout the day that the icon is pointless as it always shows 20+ notifications. I'd much rather not see it, or use that space for something else?
2 - an option to have different colour hour and minute text, rather than all the same colour?
Hello Gurjon Thank you for your efforts to find solutions to satisfy everyone.
Since the last update I have: When I get into the auto sleep mode I have the little bell with the bar. If I disable the sleep mode manually I have a small moon. So to have a full sleep mode I must have the little bell with the bar. You just have to get used to this new way of working, but it's still a patch.
I do not know the source code of Garmin but since a major change for the sleep mode to satisfy another person there are other impacts on your work.
Before he had a general command for sleep mode:
If SLEEP.MODE = True then ICON.SLEEP.VISIBLE = True else ICON.SLEEP.VISIBLE = False end if
Since an update to fix another problem the command only sees the automatic standby mode:
If SLEEP.HOUR = True then ICON.SLEEP.VISIBLE = True else ICON.SLEEP.VISIBLE = False end if
To fix the problem he should have something like this:
If SLEEP.HOUR = True and SLEEP.TOGLE.SWITCH = True then ICON.SLEEP.VISIBLE = True else ICON.SLEEP.VISIBLE = False end if
It should be noted that I only suggest a logical solution to the problem. Thank you for your patience and good luck!
DoumDoum_: I think that today it works well. If a sleep then shows a sleep icon, if a dnd shows a dnd icon. If the sleep and the dnd show the dnd icon, because it's more important, if you forget to turn off the dnd then after sleep the sounds will not be either.
gurjon - The 23x/630 are CIQ 1.x devices, and doNotDisturb isn't available until the watch has CIQ 2.1.0 or greater, so the icon won't appear on them, and isSleepMode would always be false on the 23x/630
This is a case where using the configured sleep time in UserProfile would help.