forked from FOSS/BangleApps
23 lines
504 B
JavaScript
23 lines
504 B
JavaScript
|
WIDGETS["qalarm"] = {
|
||
|
area: "tl",
|
||
|
width: 0,
|
||
|
draw: function () {
|
||
|
if (this.width)
|
||
|
g.reset().drawImage(
|
||
|
atob(
|
||
|
"GBgBAAAAAAAAABgADhhwDDwwGP8YGf+YMf+MM//MM//MA//AA//AA//AA//AA//AA//AB//gD//wD//wAAAAADwAABgAAAAAAAAA"
|
||
|
),
|
||
|
this.x,
|
||
|
this.y
|
||
|
);
|
||
|
},
|
||
|
reload: function () {
|
||
|
WIDGETS["qalarm"].width = (
|
||
|
require("Storage").readJSON("qalarm.json", 1) || []
|
||
|
).some((alarm) => alarm.on)
|
||
|
? 24
|
||
|
: 0;
|
||
|
},
|
||
|
};
|
||
|
WIDGETS["qalarm"].reload();
|