summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephen okra Houston <smhouston88@gmail.com>2016-10-15 11:12:04 -0500
committerStephen okra Houston <smhouston88@gmail.com>2016-10-18 19:11:44 -0500
commitfd7b9428e1cf1d98b775d1543466e1a51bf06a21 (patch)
tree7582f9f63d3a8cac873af0c31930a0eaf17681fe
parent256fdce3b5ff612e536be897d7959bb69a265b2d (diff)
downloadefl-fd7b9428e1cf1d98b775d1543466e1a51bf06a21.tar.gz
Luncher: Update luncher theme for ugent.
-rw-r--r--data/elementary/themes/edc/luncher.edc49
1 files changed, 22 insertions, 27 deletions
diff --git a/data/elementary/themes/edc/luncher.edc b/data/elementary/themes/edc/luncher.edc
index 0dd6c96b87..989fc12959 100644
--- a/data/elementary/themes/edc/luncher.edc
+++ b/data/elementary/themes/edc/luncher.edc
@@ -1,6 +1,6 @@
group { name: "e/gadget/luncher/icon";
script {
- public active;
+ public urgent;
}
parts {
part { name: "item_clip"; type: RECT;
@@ -184,55 +184,50 @@ group { name: "e/gadget/luncher/icon";
target: "e.swallow.icon";
transition: DECELERATE 0.1;
}
- program { name: "active";
- signal: "e,state,focused"; source: "e";
- action: STATE_SET "visible" 0.0;
- target: "background";
- transition: ACCELERATE 0.1;
+ program { name: "urgent";
+ signal: "e,state,urgent"; source: "e";
+ after: "go_urgent";
}
- program { name: "passive";
- signal: "e,state,unfocused"; source: "e";
- action: STATE_SET "default" 0.0;
- target: "background";
- transition: DECELERATE 0.1;
+ program { name: "normal";
+ signal: "e,state,normal"; source: "e";
+ after: "go_normal";
}
- program { name: "go_active";
+ program { name: "go_urgent";
script {
set_state(PART:"obackground", "visible", 0.0);
- set_int(active, 1);
+ set_int(urgent, 1);
}
- after: "go_active2";
+ after: "go_urgent2";
}
- program { name: "go_active2";
+ program { name: "go_urgent2";
action: STATE_SET "hidden" 0.0;
transition: LINEAR 0.5;
target: "obackground";
sequence {
script {
- if (get_int(active) == 1)
- run_program(get_program_id("go_active"));
+ if (get_int(urgent) == 1)
+ run_program(get_program_id("go_urgent"));
}
}
}
- program { name: "go_passive";
- signal: "e,state,unfocused"; source: "e";
+ program { name: "go_normal";
script {
- stop_program(get_program_id("go_passive2"));
- set_int(active, 0);
+ stop_program(get_program_id("go_normal2"));
+ set_int(urgent, 0);
}
- after: "go_passive2";
+ after: "go_normal2";
}
- program { name: "go_passive2";
+ program { name: "go_normal2";
action: STATE_SET "default" 0.0;
target: "obackground";
}
program { name: "exec_start";
signal: "e,action,start"; source: "e";
action: ACTION_STOP;
- target: "go_active";
- target: "go_active2";
- target: "go_passive";
- target: "go_passive2";
+ target: "go_urgent";
+ target: "go_urgent2";
+ target: "go_normal";
+ target: "go_normal2";
target: "go_big";
target: "go_big2";
after: "go_big";