diff options
Diffstat (limited to 'data/themes/default_ibar.edc')
-rw-r--r-- | data/themes/default_ibar.edc | 46 |
1 files changed, 23 insertions, 23 deletions
diff --git a/data/themes/default_ibar.edc b/data/themes/default_ibar.edc index f204b49afc..1ca6de2d4d 100644 --- a/data/themes/default_ibar.edc +++ b/data/themes/default_ibar.edc @@ -85,16 +85,16 @@ group { } program { name: "exec_start"; - signal: "start"; - source: ""; + signal: "e,action,start"; + source: "e"; action: STATE_SET "faded" 0.0; transition: LINEAR 0.5; target: "item_clip"; } program { name: "exec_exec"; - signal: "exec"; - source: ""; + signal: "e,action,exec"; + source: "e"; action: STATE_SET "faded" 0.0; transition: LINEAR 0.5; target: "item_clip"; @@ -102,8 +102,8 @@ group { } program { name: "exec_stop"; - signal: "stop"; - source: ""; + signal: "e,action,stop"; + source: "e"; action: STATE_SET "default" 0.0; target: "item_clip"; } @@ -195,7 +195,7 @@ group { } } part { - name: "label"; + name: "e.text.label"; type: TEXT; effect: SOFT_SHADOW; mouse_events: 0; @@ -240,19 +240,19 @@ group { programs { program { name: "go_active"; - signal: "active"; - source: ""; + signal: "e,state,focused"; + source: "e"; action: STATE_SET "visible" 0.0; target: "background"; after: "go_active2"; } program { name: "go_activeB"; - signal: "label_active"; - source: ""; + signal: "e,action,show,label"; + source: "e"; action: STATE_SET "visible" 0.0; transition: SINUSOIDAL 0.5; - target: "label"; + target: "e.text.label"; } program { name: "go_active2"; @@ -265,8 +265,8 @@ group { } program { name: "go_passive"; - signal: "passive"; - source: ""; + signal: "e,state,unfocused"; + source: "e"; action: ACTION_STOP; target: "go_active"; target: "go_active2"; @@ -274,11 +274,11 @@ group { } program { name: "go_passiveB"; - signal: "label_passive"; - source: ""; + signal: "e,action,hide,label"; + source: "e"; action: STATE_SET "default" 0.0; transition: SINUSOIDAL 1.0; - target: "label"; + target: "e.text.label"; } program { name: "go_passive2"; @@ -301,8 +301,8 @@ group { } program { name: "exec_start"; - signal: "start"; - source: ""; + signal: "e,action,start"; + source: "e"; action: ACTION_STOP; target: "go_active"; target: "go_active2"; @@ -314,14 +314,14 @@ group { } program { name: "exec_exec"; - signal: "exec"; - source: ""; + signal: "e,action,exec"; + source: "e"; after: "exec_start"; } program { name: "exec_stop"; - signal: "stop"; - source: ""; + signal: "e,action,stop"; + source: "e"; // action: SIGNAL_EMIT "active" 0.0; } } |