Re: [e-users] Wallpaper Cycler

2014-07-03 Thread Jérémy Zurcher
Hi,
what about building your own slideshow with edje ?
attached an old template of mine.

On Wednesday 02 July 2014  23:52, Yomi Ogunwumi wrote :
 I've asked in #e a few times, but I figured I might as well have an
 extended discussion about a wallpaper cycler here.
 
 After switching to E awhile ago, one of things I missed was having a
 wallpaper cycler. It had a few images it'd automatically cycle through
 every few minutes.
 
 IIRC, raster mentioned something about code being in place for that or
 something to that effect, but I don't remember what he said exactly.
 
 I know getting this merged into enlightenment would take awhile, so maybe I
 could use something like feh to mimic it?
 
 Yomi
 --
 Open source business process management suite built on Java and Eclipse
 Turn processes into business applications with Bonita BPM Community Edition
 Quickly connect people, data, and systems into organized workflows
 Winner of BOSSIE, CODIE, OW2 and Gartner awards
 http://p.sf.net/sfu/Bonitasoft
 ___
 enlightenment-users mailing list
 enlightenment-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/enlightenment-users
--- Hell'O from Yverdoom

Jérémy (jeyzu)

images {
   image: 00.png COMP;
   image: 01.png COMP;
   image: 02.png COMP;
   image: 03.png COMP;
   image: 04.png COMP;
}

collections {
  group { name: e/desktop/background;
//
script {
  public img_idx;
  public change_image(img[], inc) {
new i;
new imgid;
new buf[8];

i = get_int(img_idx);
if (inc == 1) {
  i += 1;
  if ( i 4) i = 0;
  set_int(img_idx, i);
}

imgid = get_part_id(img);
snprintf(buf, sizeof(buf), show%d, i);

set_state(imgid, buf, 0.0);
  }
}
//
parts {
  // primary bg
  part { name: bg0;
type: RECT;
description { state: default 0.0;
  color: 0 0 0 255;
}
  }
  // img slot 0
  part { name: img0;
type: IMAGE;
description { state: show0 0.0;
  aspect: 0. 1.0;
  aspect_preference: BOTH;
  image { normal: 00.png;  scale_hint: STATIC; }
}
description { state: show1 0.0;
  aspect: 0.3278 1.0;
  aspect_preference: BOTH;
  image { normal: 01.png;  scale_hint: STATIC; }
  rel1 { to: bg0; relative: 0.0 0.0; offset: 10 10; }
  rel2 { to: bg0; relative: 0.5 1.0; offset: 0 0; }
}
description { state: show2 0.0;
  aspect: 0.4672 1.0;
  aspect_preference: BOTH;
  image { normal: 02.png;  scale_hint: STATIC; }
  rel1 { to: bg0; relative: 0.0 0.0; offset: 10 10; }
  rel2 { to: bg0; relative: 0.7 1.0; offset: 0 0; }
}
description { state: show3 0.0;
  aspect: 0.5341 1.0;
  aspect_preference: BOTH;
  image { normal: 03.png;  scale_hint: STATIC; }
  rel1 { to: bg0; relative: 0.5 0.0; offset: 10 10; }
  rel2 { to: bg0; relative: 1.0 1.0; offset: 0 0; }
}
description { state: show4 0.0;
  aspect: 0.6239 1.0;
  aspect_preference: BOTH;
  image { normal: 04.png;  scale_hint: STATIC; }
}
  }
  // primary bg to hide to above whatever the image size is
  part { name: bg1;
type: RECT;
clip_to: clip;
description { state: default 0.0;
  color: 0 0 0 255;
}
  }
  // img slot 1
  part { name: img1;
type: IMAGE;
clip_to: clip;
description { state: show0 0.0;
  aspect: 0. 1.0;
  aspect_preference: BOTH;
  image { normal: 00.png;  scale_hint: STATIC; }
}
description { state: show1 0.0;
  aspect: 0.3278 1.0;
  aspect_preference: BOTH;
  image { normal: 01.png;  scale_hint: STATIC; }
  rel1 { to: bg0; relative: 0.0 0.0; offset: 10 10; }
  rel2 { to: bg0; relative: 0.5 1.0; offset: 0 0; }
}
description { state: show2 0.0;
  aspect: 0.4672 1.0;
  aspect_preference: BOTH;
  image { normal: 02.png;  scale_hint: STATIC; }
  rel1 { to: bg0; relative: 0.0 0.0; offset: 10 10; }
  rel2 { to: bg0; relative: 0.7 1.0; offset: 0 0; }
}
description { state: show3 0.0;
  aspect: 0.5341 1.0;
  aspect_preference: BOTH;
  image { normal: 03.png;  scale_hint: STATIC; }
  rel1 { to: bg0; relative: 0.5 0.0; offset: 10 10; }
  rel2 { to: bg0; relative: 1.0 1.0; offset: 0 0; }
}
description { state: show4 0.0;
  aspect: 0.6239 1.0;
  aspect_preference: BOTH;
  image { normal: 04.png;  scale_hint: STATIC; }
}
  }
  // used for the transition
  part { name: clip;
type: RECT;
 

Re: [e-users] Wallpaper Cycler

2014-07-03 Thread Alex-P. Natsios
On Thu, Jul 3, 2014 at 10:15 AM, Jérémy Zurcher jer...@asynk.ch wrote:
 Hi,
 what about building your own slideshow with edje ?
 attached an old template of mine.


That's cute but i bet it won't scale to the count of wallpapers some
of us have (yeah sick i know).

There is a slideshow module in Subversion-legacy.git but it no longer
compiles and works with current E.
I remember looking at it but i stopped caring for such a feature long
ago. (my workflow makes the need for a wallpaper (or more wallpapers)
kind of obsolete).

-- 
Regards,

Alex-P. Natsios
(a.k.a Drakevr)

--
Open source business process management suite built on Java and Eclipse
Turn processes into business applications with Bonita BPM Community Edition
Quickly connect people, data, and systems into organized workflows
Winner of BOSSIE, CODIE, OW2 and Gartner awards
http://p.sf.net/sfu/Bonitasoft
___
enlightenment-users mailing list
enlightenment-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-users


Re: [e-users] Wallpaper Cycler

2014-07-03 Thread Kevin Martin
On 07/03/2014 08:18 AM, Alex-P. Natsios wrote:
 On Thu, Jul 3, 2014 at 10:15 AM, Jérémy Zurcher jer...@asynk.ch wrote:
 Hi,
 what about building your own slideshow with edje ?
 attached an old template of mine.

 
 That's cute but i bet it won't scale to the count of wallpapers some
 of us have (yeah sick i know).
 
 There is a slideshow module in Subversion-legacy.git but it no longer
 compiles and works with current E.
 I remember looking at it but i stopped caring for such a feature long
 ago. (my workflow makes the need for a wallpaper (or more wallpapers)
 kind of obsolete).
 
Hmm, I got the slideshow module to compile against 19.0 beta2 with a minimum of 
effort (thankfully, since I'm not a
developer/programmer).  And it runs and works fine.

Kevin

--
Open source business process management suite built on Java and Eclipse
Turn processes into business applications with Bonita BPM Community Edition
Quickly connect people, data, and systems into organized workflows
Winner of BOSSIE, CODIE, OW2 and Gartner awards
http://p.sf.net/sfu/Bonitasoft
___
enlightenment-users mailing list
enlightenment-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-users


[e-users] Terminology 0.6.1

2014-07-03 Thread Boris Faure
Terminology 0.6.0 was released yesterday but our awesome crew did some
in-flight repairs!

Here's the list of changes:

 - Reduced power consumption
 - Add .tga images to recognized files
 - Fix issues with the teamwork module and popups.


The tarballs can be found at:
http://download.enlightenment.org/rel/apps/terminology/terminology-0.6.1.tar.gz
http://download.enlightenment.org/rel/apps/terminology/terminology-0.6.1.tar.xz

The new checksums:
sha1sum:
c0f1f5d32abd2928476f168a8f58c5d3d4169f77 terminology-0.6.1.tar.gz
00cab5cce3ea896812018eba8940921b99d58eea terminology-0.6.1.tar.xz

sha256sum
1d8d67cbe31dfba0d1644c7130cf63454d8cc5006034999625be24edbcb429f2 
terminology-0.6.1.tar.gz
0c8e636918b118151d801bb5cddf85fe97b3941be115334fa711d0ab45408151 
terminology-0.6.1.tar.xz

-- 
Boris Faure for the Terminology space crew
--
Open source business process management suite built on Java and Eclipse
Turn processes into business applications with Bonita BPM Community Edition
Quickly connect people, data, and systems into organized workflows
Winner of BOSSIE, CODIE, OW2 and Gartner awards
http://p.sf.net/sfu/Bonitasoft___
enlightenment-users mailing list
enlightenment-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-users


Re: [e-users] Multiple screens issue with E19 (git master fa8c7f53cd468) and EFL 1.10.1

2014-07-03 Thread Stefano
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Thu, 3 Jul 2014 09:00:56 +0900
CH(R wrote:

 On Wed, 2 Jul 2014 18:20:10 +0100 Stefano pietran...@gmail.com said:
 
 
 
  -BEGIN PGP SIGNED MESSAGE-
  Hash: SHA1
  
  Hi all,
  
  I have recently updated my system to E19 (git master fa8c7f53cd468) and EFL
  1.10.1 and I have an odd issue when I switch to an external screen (or I use
  it next to my laptop's one) that was *not* present in E18.
  
  When I switch monitor e.g. with
  
  xrandr --output LVDS1 --off  xrandr --output HDMI1 --auto
  
  all is OK, but when I switch back to the laptop's monitor with e.g. 
  
  xrandr --output HDMI1 --off  xrandr --output LVDS1 --auto
  
  the E19 desktop fills only the top left third of the monitor (note that I
  can still move the mouse around the whole monitor) and all existing windows
  are compressed in that area. If I restart E19 (left click on desktop -
  enlightenment - restart) the desktop fills the whole monitor again (but of
  course all the existing windows remain small).
  
  Any ideas of what's happening? Is this a known issue?
 
 have you tried the screen setup dialog which give you a gui for this?
 

I have just tried that. If I use the screen setup dialog to turn off the laptop
monitor and on the external one, the former does not turn off. So I can't
replicate the issue.

Also, I was wrong about using the external monitor next to the laptop's. In
that case the desktop is restored OK on the laptop's monitor when I switch the
external one off (with both xrandr and E19's screen setup).

Thanks,


- -- 
Stefano

Fortune of the day: You are the only person to ever get this message.
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)

iQEcBAEBAgAGBQJTtdAcAAoJEFQWuLhMTpvmXiIH/jRC0fp6pJmpgZ3/8MltLdrO
wVF0RaPLUwdmRf+wjvZtPGm8pOkhVuKUAsSZtRstuBU8Dw/Sy22fygmm6Ys35RW3
9YhuhWUh5myCA82Qn0s9FuL5ev79t9yNcvP5spgrHoaN6KzXprfveXW/Ln2BkowP
IwpM1+hfNadgwK4mIZ6h2EVmXoDp2vyykEpl2Obm/jGntUHArOmlPUsEZy5TT4HZ
zQxzoUO71zxDC1cM1cIkdxoy6xw3qkpERQIqaw6b5fCVB0fbOjI9ghsi9IutTKCk
a348hiN3D3PI4nLGW9cKZaoJOImf2bVz77pi7Z4KKYk1ThD+BV7uNEH1wUbruOc=
=sbBI
-END PGP SIGNATURE-
--
Open source business process management suite built on Java and Eclipse
Turn processes into business applications with Bonita BPM Community Edition
Quickly connect people, data, and systems into organized workflows
Winner of BOSSIE, CODIE, OW2 and Gartner awards
http://p.sf.net/sfu/Bonitasoft
___
enlightenment-users mailing list
enlightenment-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-users