Today, tomorrow, day after tomorrow ... not working

{ddw2}, {ddw2_1}, {ddw2_2} …. => Th, Fr, not working

Wear OS itself isn’t globally blocking scripting.
Your WatchMaker build is likely running without its scripting engine enabled or supported on this version.

That’s why:

  • {1+1} → false

  • {os.date()} → nothing

  • No Lua options appear

It only works for the first day, i wish it would work for the next 4 days as well.

i found a solution. you can ask todays day and set the tomorrows day by yourself. also for the day +2 and so on ….

e.g.: (you only have to replace the german texts with english once or witgh that language you use)

mo = monday, di = tuesday, mi = wednesday ….

for the next day =>

{ddw2} === ‘Mo’ ? ‘Di’ : {ddw2} === ‘Di’ ? ‘Mi’ : {ddw2} === ‘Mi’ ? ‘Do’ : {ddw2} === ‘Do’ ? ‘Fr’ : {ddw2} === ‘Fr’ ? ‘Sa’ : {ddw2} === ‘Sa’ ? ‘So’ : ‘’

for the day after next day =>

{ddw2} === ‘Mo’ ? ‘Mi’ : {ddw2} === ‘Di’ ? ‘Do’ : {ddw2} === ‘Mi’ ? ‘Fr’ : {ddw2} === ‘Do’ ? ‘Sa’ : {ddw2} === ‘Fr’ ? ‘So’ : {ddw2} === ‘Sa’ ? ‘Mo’ : ‘’

and so on …