e theme - screen suspend/locl/resume etc, make black rect on noeffect

this makes the black rect etc. appear instantly even if no effects are
selected for comp - this should cover up lockscreen and other stuff on
suspend/shutdown/resume etc. like fading does. this should fix T1498
This commit is contained in:
Carsten Haitzler 2014-08-18 11:47:42 +09:00
parent c27c4bb979
commit feeffa881b
1 changed files with 5 additions and 21 deletions

View File

@ -201,43 +201,27 @@ group { name: "e/comp/screen/overlay/noeffects";
}
program {
name: "suspend";
signal: "e,state,sys,suspend"; source: "e";
action: SIGNAL_EMIT "e,state,sys,suspend,done" "e";
after: "action_done";
}
program {
name: "action_done";
action: STATE_SET "visible" 0.0;
transition: ACCELERATE 0 CURRENT;
target: "suspender";
}
program {
name: "hibernate";
signal: "e,state,sys,hibernate"; source: "e";
action: SIGNAL_EMIT "e,state,sys,hibernate,done" "e";
after: "action_done";
transition: ACCELERATE 0 CURRENT;
}
program {
name: "resume";
transition: DECELERATE 1 CURRENT;
transition: DECELERATE 0 CURRENT;
}
program {
name: "reboot";
signal: "e,state,sys,reboot"; source: "e";
action: SIGNAL_EMIT "e,state,sys,reboot,done" "e";
after: "action_done";
transition: DECELERATE 0 CURRENT;
}
program {
name: "halt";
signal: "e,state,sys,halt"; source: "e";
action: SIGNAL_EMIT "e,state,sys,halt,done" "e";
after: "action_done";
transition: DECELERATE 0 CURRENT;
}
program {
name: "logout";
signal: "e,state,sys,logout"; source: "e";
action: SIGNAL_EMIT "e,state,sys,logout,done" "e";
after: "action_done";
transition: DECELERATE 0 CURRENT;
}
}
}