aboutsummaryrefslogtreecommitdiffstats
path: root/gg_elife/data/elife.edc
diff options
context:
space:
mode:
Diffstat (limited to 'gg_elife/data/elife.edc')
-rw-r--r--gg_elife/data/elife.edc48
1 files changed, 48 insertions, 0 deletions
diff --git a/gg_elife/data/elife.edc b/gg_elife/data/elife.edc
new file mode 100644
index 0000000..69df75c
--- /dev/null
+++ b/gg_elife/data/elife.edc
@@ -0,0 +1,48 @@
+externals {
+ external: "elife";
+}
+
+collections {
+ group {
+ name: "e/desktop/background";
+
+ script {
+ public clock_cb(unused) {
+ emit("elife:refresh", "☃");
+ timer(0.5, "clock_cb", 1);
+ }
+ }
+
+ parts {
+ part {
+ name: "bg";
+ type: RECT;
+ description {
+ state: "default" 0.0;
+ color: 0 0 0 255;
+ }
+ }
+ part {
+ name: "elife";
+ type: EXTERNAL;
+ source: "elife";
+
+ description {
+ state: "default" 0.0;
+ }
+ }
+ }
+
+ // Get everything started at load
+ programs {
+ program {
+ name: "init";
+ signal: "load";
+ source: "";
+ script {
+ clock_cb(0);
+ }
+ }
+ }
+ }
+}