[e-users] e17setroot and .xinitrc

2006-04-12 Thread Andrea Spada
Olá. I'm trying to get e17setroot works with my .xinitrc, but it's
doesn't works, at all!

Here's my .xinitrc:

xrdb -load $HOME/.Xresources 
gnome-settings-daemon 
elapse 
exec enlightenment 
e17setroot -s /Files/Images/Wallpapers/singularity-crop.jpg 
exec dbus-launch --exit-with-session enlightenment

Anyone knows a better way?

Thank's,
Andrea


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
enlightenment-users mailing list
enlightenment-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-users


Re: [e-users] e17setroot and .xinitrc

2006-04-12 Thread Mike Russo
Once your .xinitrc calls exec enlightenment  it stops executing. The 
dbus-launch line provides the same functionality.  Remove the exec and 
it should work.


Andrea Spada wrote:

Olá. I'm trying to get e17setroot works with my .xinitrc, but it's
doesn't works, at all!

Here's my .xinitrc:

xrdb -load $HOME/.Xresources 
gnome-settings-daemon 
elapse 
exec enlightenment 
e17setroot -s /Files/Images/Wallpapers/singularity-crop.jpg 
exec dbus-launch --exit-with-session enlightenment

Anyone knows a better way?

Thank's,
Andrea

  



--
Mike Russo
ReadQ Systems, Inc.
(212) 425 3680 x105

Random quote of the last-time-I-ran-bash:
Gibble, Gobble, we ACCEPT YOU ...



---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid0944bid$1720dat1642
___
enlightenment-users mailing list
enlightenment-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-users


Re: [e-users] e17setroot and .xinitrc

2006-04-12 Thread Doug McEachern
If you use e17setroot to create the edj file in e17 and have that set as your background, you should be able to use Esetroot in your .xinitrc to put the jpg up as well. I'm running on the assumption that you want to enable fake transparency effects here. 
On 4/12/06, Andrea Spada [EMAIL PROTECTED] wrote:
Olá. I'm trying to get e17setroot works with my .xinitrc, but it'sdoesn't works, at all!Here's my .xinitrc:xrdb -load $HOME/.Xresources gnome-settings-daemon elapse exec enlightenment 
e17setroot -s /Files/Images/Wallpapers/singularity-crop.jpg exec dbus-launch --exit-with-session enlightenmentAnyone knows a better way?Thank's,Andrea---
This SF.Net email is sponsored by xPML, a groundbreaking scripting languagethat extends applications into web and mobile media. Attend the live webcastand join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642___
enlightenment-users mailing listenlightenment-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-users


[e-users] Gaim icon and ibar....

2006-04-12 Thread Alan Hoyle
I'm running the current e17 on fc4 from the didier archive.

My icon for gaim keeps blanking out on me in the upper left corner and
in the ibar, and it won't paste into the ibar, or it might show up
multiple times.

-alan

--
   Alan Hoyle  -  [EMAIL PROTECTED]  -  http://www.alanhoyle.com/
 I don't want the world, I just want your half. -TMBG
Get Horizontal, Play Ultimate.


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid0944bid$1720dat1642
___
enlightenment-users mailing list
enlightenment-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-users


Re: [e-users] e17setroot and .xinitrc

2006-04-12 Thread Michael Jennings
On Wednesday, 12 April 2006, at 12:08:06 (-0400),
Mike Russo wrote:

 Here's my .xinitrc:
 
 xrdb -load $HOME/.Xresources 
 gnome-settings-daemon 
 elapse 
 exec enlightenment 
 e17setroot -s /Files/Images/Wallpapers/singularity-crop.jpg 
 exec dbus-launch --exit-with-session enlightenment

 Once your .xinitrc calls exec enlightenment it stops
 executing. The dbus-launch line provides the same functionality.
 Remove the exec and it should work.

You'd be correct if it weren't for the  on the end of that line.
When the shell sees the conflicting requests of exec (replace the
currently running process with the given command) and  (fork a new
process in the background with the given command), it assumes that the
user didn't know what exec was supposed to do, and  takes
precedence.  So the exec is essentially ignored.

The problem is more likely a race condition.  Replace the e17setroot
line with this:

(sleep 5 ; e17setroot -s /Files/Images/Wallpapers/singularity-crop.jpg) 

See if that fixes the problem.

Michael

-- 
Michael Jennings (a.k.a. KainX)  http://www.kainx.org/  [EMAIL PROTECTED]
n + 1, Inc., http://www.nplus1.net/   Author, Eterm (www.eterm.org)
---
 There are so many things that are incredible about me.  The most
  amazing is my humility.   -- Will Smith


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
enlightenment-users mailing list
enlightenment-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-users


Re: [e-users] e17setroot and .xinitrc

2006-04-12 Thread Thomas Kuther
On Wed, 12 Apr 2006 12:21:59 -0400
Doug McEachern [EMAIL PROTECTED] wrote:

 If you use e17setroot to create the edj file in e17 and have that set
 as your background, you should be able to use Esetroot in
 your .xinitrc to put the jpg up as well. I'm running on the
 assumption that you want to enable fake transparency effects here.
 
 On 4/12/06, Andrea Spada [EMAIL PROTECTED] wrote:
 
  Olá. I'm trying to get e17setroot works with my .xinitrc, but it's
  doesn't works, at all!
 
  Here's my .xinitrc:
 
  xrdb -load $HOME/.Xresources 
  gnome-settings-daemon 
  elapse 
  exec enlightenment 
  e17setroot -s /Files/Images/Wallpapers/singularity-crop.jpg 
  exec dbus-launch --exit-with-session enlightenment
 
  Anyone knows a better way?
 
  Thank's,
  Andrea

Ola!

just create an .eap that executes what you want on startup and put in
in ~/.e/e/applications/startup or list it in the .order file there. 

And to set the background it is indeed enough to use 
'Esetroot -scale /path/to/some/background.png' or .jpg whatever

E itself remembers it's wallpaper setting. So you just need to Esetroot
the original image to force fake transparency.

HTH
Tom



---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid0944bid$1720dat1642
___
enlightenment-users mailing list
enlightenment-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-users


Re: [e-users] e17setroot and .xinitrc

2006-04-12 Thread Andrea Spada
On Thu, 13 Apr 2006 00:14:32 +0200
Thomas Kuther [EMAIL PROTECTED] wrote:

Ok, lets go! 

I had tried the following solutions:

1)  Put an eap file with the command Esetroot -s
whateveriwant... in ~/.e/e/applications/startup/.order

2)  Use an .xinitrc as it:
xrdb -load $HOME/.Xresources 
gnome-settings-daemon 
elapse 
enlightenment 
(sleep 5 ; Esetroot -s whateveriwant...)

No one works. When i use the .xinitrc as the above, enlightenment exit
when Esetroot run with the following log:

DYNAMIC DETERMINED PREFIX: /Packages/Enlightenment
E17 INIT: XINERAMA CHOSEN: [0], 1024x768+0+0
DYNAMIC DETERMINED PREFIX: /Packages/Enlightenment
E17 INIT: XINERAMA CHOSEN: [0], 1024x768+0+0
___ ___
|:| Enlightenment Error |:|
~~~ ~~~
Cannot create manager object for screen 0

___ ___
|:| Enlightenment Error |:|
~~~ ~~~
Enlightenment set up window management for all the screens on your
system failed. Perhaps another window manager is running?

E17: Begin shutdown procedure!
Cache scan finish.
Cache scan finish.
Cache scan finish.
DYNAMIC DETERMINED PREFIX: /Packages/Enlightenment
E17 INIT: XINERAMA CHOSEN: [0], 1024x768+0+0
Debug [5/4] elapse_gui_init()
Debug [5/4] ecore_init()
Debug [5/4] ecore_evas_init()
Debug [5/4] edje_init()
Debug [5/4] esmart_trans_x11_new()
Debug [5/4] smart object resize
Debug [5/4] object resize
Debug [5/4] ecore_evas_show()
Debug [5/4] ecore_timer_add()
Debug [5/4] ecore_main_loop_begin()
___ ___
|:| Enlightenment Error |:|
~~~ ~~~
Lost X connection.
E17: Begin shutdown procedure!

I have another eap with gnome-settings-daemon in startup/.order, and it
works, but not my Esetroot eap.

Anyone have an idea that can solve this strange behaviour?


 On Wed, 12 Apr 2006 12:21:59 -0400
 Doug McEachern [EMAIL PROTECTED] wrote:
 
  If you use e17setroot to create the edj file in e17 and have that
  set as your background, you should be able to use Esetroot in
  your .xinitrc to put the jpg up as well. I'm running on the
  assumption that you want to enable fake transparency effects here.
  
  On 4/12/06, Andrea Spada [EMAIL PROTECTED]
  wrote:
  
   Olá. I'm trying to get e17setroot works with my .xinitrc, but it's
   doesn't works, at all!
  
   Here's my .xinitrc:
  
   xrdb -load $HOME/.Xresources 
   gnome-settings-daemon 
   elapse 
   exec enlightenment 
   e17setroot -s /Files/Images/Wallpapers/singularity-crop.jpg 
   exec dbus-launch --exit-with-session enlightenment
  
   Anyone knows a better way?
  
   Thank's,
   Andrea
 
 Ola!
 
 just create an .eap that executes what you want on startup and put in
 in ~/.e/e/applications/startup or list it in the .order file there. 
 
 And to set the background it is indeed enough to use 
 'Esetroot -scale /path/to/some/background.png' or .jpg whatever
 
 E itself remembers it's wallpaper setting. So you just need to
 Esetroot the original image to force fake transparency.
 
 HTH
 Tom
 
 
 
 ---
 This SF.Net email is sponsored by xPML, a groundbreaking scripting
 language that extends applications into web and mobile media. Attend
 the live webcast and join the prime developer group breaking into
 this new coding territory!
 http://sel.as-us.falkag.net/sel?cmd=lnkkid0944bid$1720dat1642
 ___ enlightenment-users
 mailing list enlightenment-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/enlightenment-users
 


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
enlightenment-users mailing list
enlightenment-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-users


Re: [e-users] e17setroot and .xinitrc

2006-04-12 Thread Andrea Spada
On Wed, 12 Apr 2006 20:05:37 +
Andrea Spada [EMAIL PROTECTED] wrote:

Ok, I have figured out the problem... at least, using an Esetroot.eap...

I have to call this AFTER the gnome-settings-daemon.eap !!!

I don't know why, but if i call it BEFORE, it doesn't works. 

The .xinitrc issue continue unsolved but, to me, the above solution is
perfect! E17 rocks!!!


 On Thu, 13 Apr 2006 00:14:32 +0200
 Thomas Kuther [EMAIL PROTECTED] wrote:
 
 Ok, lets go! 
 
 I had tried the following solutions:
 
 1)Put an eap file with the command Esetroot -s
   whateveriwant... in ~/.e/e/applications/startup/.order
 
 2)Use an .xinitrc as it:
   xrdb -load $HOME/.Xresources 
   gnome-settings-daemon 
   elapse 
   enlightenment 
   (sleep 5 ; Esetroot -s whateveriwant...)
 
 No one works. When i use the .xinitrc as the above, enlightenment exit
 when Esetroot run with the following log:
 
 DYNAMIC DETERMINED PREFIX: /Packages/Enlightenment
 E17 INIT: XINERAMA CHOSEN: [0], 1024x768+0+0
 DYNAMIC DETERMINED PREFIX: /Packages/Enlightenment
 E17 INIT: XINERAMA CHOSEN: [0], 1024x768+0+0
 ___ ___
 |:| Enlightenment Error |:|
 ~~~ ~~~
 Cannot create manager object for screen 0
 
 ___ ___
 |:| Enlightenment Error |:|
 ~~~ ~~~
 Enlightenment set up window management for all the screens on your
 system failed. Perhaps another window manager is running?
 
 E17: Begin shutdown procedure!
 Cache scan finish.
 Cache scan finish.
 Cache scan finish.
 DYNAMIC DETERMINED PREFIX: /Packages/Enlightenment
 E17 INIT: XINERAMA CHOSEN: [0], 1024x768+0+0
 Debug [5/4] elapse_gui_init()
 Debug [5/4] ecore_init()
 Debug [5/4] ecore_evas_init()
 Debug [5/4] edje_init()
 Debug [5/4] esmart_trans_x11_new()
 Debug [5/4] smart object resize
 Debug [5/4] object resize
 Debug [5/4] ecore_evas_show()
 Debug [5/4] ecore_timer_add()
 Debug [5/4] ecore_main_loop_begin()
 ___ ___
 |:| Enlightenment Error |:|
 ~~~ ~~~
 Lost X connection.
 E17: Begin shutdown procedure!
 
 I have another eap with gnome-settings-daemon in startup/.order, and
 it works, but not my Esetroot eap.
 
 Anyone have an idea that can solve this strange behaviour?
 
 
  On Wed, 12 Apr 2006 12:21:59 -0400
  Doug McEachern [EMAIL PROTECTED] wrote:
  
   If you use e17setroot to create the edj file in e17 and have that
   set as your background, you should be able to use Esetroot in
   your .xinitrc to put the jpg up as well. I'm running on the
   assumption that you want to enable fake transparency effects here.
   
   On 4/12/06, Andrea Spada [EMAIL PROTECTED]
   wrote:
   
Olá. I'm trying to get e17setroot works with my .xinitrc, but
it's doesn't works, at all!
   
Here's my .xinitrc:
   
xrdb -load $HOME/.Xresources 
gnome-settings-daemon 
elapse 
exec enlightenment 
e17setroot -s /Files/Images/Wallpapers/singularity-crop.jpg 
exec dbus-launch --exit-with-session enlightenment
   
Anyone knows a better way?
   
Thank's,
Andrea
  
  Ola!
  
  just create an .eap that executes what you want on startup and put
  in in ~/.e/e/applications/startup or list it in the .order file
  there. 
  
  And to set the background it is indeed enough to use 
  'Esetroot -scale /path/to/some/background.png' or .jpg whatever
  
  E itself remembers it's wallpaper setting. So you just need to
  Esetroot the original image to force fake transparency.
  
  HTH
  Tom
  
  
  
  ---
  This SF.Net email is sponsored by xPML, a groundbreaking scripting
  language that extends applications into web and mobile media. Attend
  the live webcast and join the prime developer group breaking into
  this new coding territory!
  http://sel.as-us.falkag.net/sel?cmd=lnkkid0944bid$1720dat1642
  ___ enlightenment-users
  mailing list enlightenment-users@lists.sourceforge.net
  https://lists.sourceforge.net/lists/listinfo/enlightenment-users
  
 
 
 ---
 This SF.Net email is sponsored by xPML, a groundbreaking scripting
 language that extends applications into web and mobile media. Attend
 the live webcast and join the prime developer group breaking into
 this new coding territory!
 http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
 ___ enlightenment-users
 mailing list enlightenment-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/enlightenment-users
 


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new 

Re: [e-users] e17setroot and .xinitrc

2006-04-12 Thread Vijay Durairaj
This is because gnome-settings-daemon sets its own wallpaper (defined 
in gnome).


-Vijay

[EMAIL PROTECTED] wrote:

On Wed, 12 Apr 2006 20:05:37 +
Andrea Spada [EMAIL PROTECTED] wrote:

Ok, I have figured out the problem... at least, using an Esetroot.eap...

I have to call this AFTER the gnome-settings-daemon.eap !!!

I don't know why, but if i call it BEFORE, it doesn't works. 


The .xinitrc issue continue unsolved but, to me, the above solution is
perfect! E17 rocks!!!

  





---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
enlightenment-users mailing list
enlightenment-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-users