Re: [e-users] key binding to module action

2005-10-31 Thread Anders Trobäck

Do you mean?

enlightenment_remote -binding-key-add ANY t WIN 0 exec 
enlightenment_remote -module-enable ibar


enlightenment_remote -binding-key-add ANY r WIN 0 exec 
enlightenment_remote -module-disable ibar


\\anders

Morten Nilsen wrote:
Hi, is there a way to bind an action that tells a module to do 
something? (ie.: bind Super_R to start module)


I've been poking around enlightenment_remote but, can't find anything 
obvious (I have managed to bind Super_R to main menu tough)


Cheers,


--


Microsoft is not the answer.
Microsoft is the question.
And 'No' is the answer!

Anders Trobäck
http://www.troback.com


---
This SF.Net email is sponsored by the JBoss Inc.
Get Certified Today * Register for a JBoss Training Course
Free Certification Exam for All Training Attendees Through End of 2005
Visit http://www.jboss.com/services/certification for more information
___
enlightenment-users mailing list
enlightenment-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-users


[e-users] A NEW AnonCVS mirror

2005-10-31 Thread The Rasterman
Thanks to our freinds at http://www.thinktux.net off in the Alps in
Switzerland, we have a new Anonymous CVS Mirror. This will NOT ALLOW WRITES and
it is not ALWAYS up to date with development CVS as it syncs every 30 minutes
from development CVS, BUT it is at most 30 minutes behind, and apparently has a
lot of bandwidth. So thanks om1n[A]e and null__ for helping set it up and
managing it. You can check the details here:

  http://www.enlightenment.org/Enlightenment/Get_Enlightenment/index.html

And you can check out a tree for e17 with this command:

  cvs -d :pserver:[EMAIL PROTECTED]/root co e17

So everyone having problems getting into sf.net anonymous CVS, this is another
option. :) Again. Thanks to om1n[A]e and null__ :)

-- 
- Codito, ergo sum - I code, therefore I am --
The Rasterman (Carsten Haitzler)[EMAIL PROTECTED]
裸好多
Tokyo, Japan (東京 日本)


---
This SF.Net email is sponsored by the JBoss Inc.
Get Certified Today * Register for a JBoss Training Course
Free Certification Exam for All Training Attendees Through End of 2005
Visit http://www.jboss.com/services/certification for more information
___
enlightenment-users mailing list
enlightenment-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-users


Re: [e-users] lost locales

2005-10-31 Thread Anders Trobäck

Try:

enlightenment_remote -lang-list

Will list all available languages


enlightenment_remote -lang-set de

Will set the current language to german


Was this what you want?


\\anders


Gerald Dachs wrote:

Hello List,

e17 from cvs from yesterday doesn't show locales anymore. The version 
0.16.999.018 from get-e.org shows them fine. I can't see a relevant change if I 
compare config.h from
both versions. The problem is in the binary, because I get the locales back if 
I exchange
only the enlightment binary. What can I do to track this down?

Sorry if this has asked already, hadn't found something relevant in the 
archives.

Gerald


---
This SF.Net email is sponsored by the JBoss Inc.
Get Certified Today * Register for a JBoss Training Course
Free Certification Exam for All Training Attendees Through End of 2005
Visit http://www.jboss.com/services/certification for more information
___
enlightenment-users mailing list
enlightenment-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-users


--


Microsoft is not the answer.
Microsoft is the question.
And 'No' is the answer!

Anders Trobäck
http://www.troback.com


---
This SF.Net email is sponsored by the JBoss Inc.
Get Certified Today * Register for a JBoss Training Course
Free Certification Exam for All Training Attendees Through End of 2005
Visit http://www.jboss.com/services/certification for more information
___
enlightenment-users mailing list
enlightenment-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-users


Re: [e-users] A NEW AnonCVS mirror

2005-10-31 Thread Jesse Luehrs
On Mon, 31 Oct 2005 18:43:48 +0900
Carsten Haitzler (The Rasterman) [EMAIL PROTECTED] wrote:

 Thanks to our freinds at http://www.thinktux.net off in the Alps in
 Switzerland, we have a new Anonymous CVS Mirror. This will NOT ALLOW
 WRITES and it is not ALWAYS up to date with development CVS as it
 syncs every 30 minutes from development CVS, BUT it is at most 30
 minutes behind, and apparently has a lot of bandwidth. So thanks
 om1n[A]e and null__ for helping set it up and managing it. You can
 check the details here:
 
   http://www.enlightenment.org/Enlightenment/Get_Enlightenment/index.html
 
 And you can check out a tree for e17 with this command:
 
   cvs -d :pserver:[EMAIL PROTECTED]/root co e17
 
 So everyone having problems getting into sf.net anonymous CVS, this
 is another option. :) Again. Thanks to om1n[A]e and null__ :)

For all the Gentoo users out there, just do

export ECVS_SERVER=thinktux.net:/root

before emerging, and portage will use the new mirror.

Jesse


---
This SF.Net email is sponsored by the JBoss Inc.
Get Certified Today * Register for a JBoss Training Course
Free Certification Exam for All Training Attendees Through End of 2005
Visit http://www.jboss.com/services/certification for more information
___
enlightenment-users mailing list
enlightenment-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-users


[e-users] Gentoo update script for e17

2005-10-31 Thread Jesse Luehrs
If you are running e17 on Gentoo like me, and like using the ebuild
system for getting cvs updates, but don't like doing it manually, this
script could be useful. It updates all of the necessary e17 packages
(feel free to modify the list), and allows you to change things like
CFLAGS so that you can run e17 with different CFLAGS (like -g) without
having to remember to specify them. (Keep in mind, though, that CFLAGS
don't stack.) It also only recompiles packages that have been updated
in cvs since the last update, or, if you have genlop installed, ones
that were compiled with different CFLAGS previously. Just stick this
script in a cron job and get easy updates to e17 however often you want.

Jesse

#!/bin/bash

STATUS_LOG=/var/log/e_log
EMERGE_LOG=/var/log/e_emerge_log

export CFLAGS=-O2 -march=pentium4 -pipe -g
export FEATURES=nostrip
export ECVS_SERVER=thinktux.net:/root

rm -f ${STATUS_LOG} ${EMERGE_LOG}

build_package() {
emerge --oneshot $1  ${EMERGE_LOG}
if [[ $? -ne 0 ]]; then
echo   Merging $1 failed. See ${EMERGE_LOG} for details.  
${STATUS_LOG}
# force a cvs update next time so that this will be rebuilt every time
# until it is successful (in case of manual cancel, computer
# overheating, etc.)
rm -f /usr/portage/distfiles/cvs-src/${1/*\/}/AUTHORS
rm -f /usr/portage/distfiles/cvs-src/misc/${1/*\/}/AUTHORS
rm -f /usr/portage/distfiles/cvs-src/e17/*/${1/*\/}/AUTHORS
else
echo   Done merging $1.
fi
}

for package in \
dev-libs/eet \
dev-db/edb \
x11-libs/evas \
x11-libs/ecore \
dev-libs/embryo \
media-libs/imlib2 \
media-libs/imlib2_loaders \
media-libs/edje \
media-libs/epeg \
media-libs/epsilon \
x11-libs/esmart \
media-libs/emotion \
dev-libs/engrave \
x11-libs/ewl \
media-gfx/entice \
x11-misc/entrance \
media-video/eclair \
x11-wm/e \
app-misc/examine \
x11-misc/engage \
dev-util/e_utils \
x11-plugins/e_modules \
media-gfx/elicit \
app-misc/evidence \
; do
echo ${package}:  ${STATUS_LOG}

if [[ -x $( which genlop ) ]]; then
OLD_CFLAGS=$( echo -n $( genlop -i ${package} | grep CFLAGS | sed 
s/CFLAGS=\\(.*\)\/\1/ ) )

if [[ ${CFLAGS} != ${OLD_CFLAGS} ]]; then
echo   Merging ${package} due to changed CFLAGS.  ${STATUS_LOG}
build_package ${package}
continue
fi
fi

EBUILD_PATH=/usr/portage/${package}/${package/*\/}-.ebuild
if [[ ! -f ${EBUILD_PATH} ]]; then
echo   ${EBUILD_PATH} is not a file!
else
# otherwise unpack might just exit with 'WORKDIR is up to date'
ebuild ${EBUILD_PATH} clean
if ebuild ${EBUILD_PATH} unpack | sed '0,/update -dP/d; /Copying .* 
from /,$d' | grep -q .; then
echo   Merging ${package} due to CVS update.  ${STATUS_LOG}
build_package ${package}
else
echo   Skipping ${package}.  ${STATUS_LOG}
fi
fi
done


---
This SF.Net email is sponsored by the JBoss Inc.
Get Certified Today * Register for a JBoss Training Course
Free Certification Exam for All Training Attendees Through End of 2005
Visit http://www.jboss.com/services/certification for more information
___
enlightenment-users mailing list
enlightenment-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-users


Re: [e-users] Gentoo update script for e17

2005-10-31 Thread Jesse Luehrs
On Mon, 31 Oct 2005 05:45:57 -0600
Jesse Luehrs [EMAIL PROTECTED] wrote:

Edit: This line

 echo   Done merging $1.

should be

 echo   Done merging $1.  ${STATUS_LOG}

Sorry(:

Jesse


---
This SF.Net email is sponsored by the JBoss Inc.
Get Certified Today * Register for a JBoss Training Course
Free Certification Exam for All Training Attendees Through End of 2005
Visit http://www.jboss.com/services/certification for more information
___
enlightenment-users mailing list
enlightenment-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-users


Re: [e-users] A NEW AnonCVS mirror

2005-10-31 Thread Thomas Kuther
On Mon, 31 Oct 2005 04:52:16 -0600
Jesse Luehrs [EMAIL PROTECTED] wrote:

 On Mon, 31 Oct 2005 18:43:48 +0900
 Carsten Haitzler (The Rasterman) [EMAIL PROTECTED] wrote:
 
  Thanks to our freinds at http://www.thinktux.net off in the Alps in
  Switzerland, we have a new Anonymous CVS Mirror. This will NOT ALLOW
  WRITES and it is not ALWAYS up to date with development CVS as it
  syncs every 30 minutes from development CVS, BUT it is at most 30
  minutes behind, and apparently has a lot of bandwidth. So thanks
  om1n[A]e and null__ for helping set it up and managing it. You can
  check the details here:
  
http://www.enlightenment.org/Enlightenment/Get_Enlightenment/index.html
  
  And you can check out a tree for e17 with this command:
  
cvs -d :pserver:[EMAIL PROTECTED]/root co e17
  
  So everyone having problems getting into sf.net anonymous CVS, this
  is another option. :) Again. Thanks to om1n[A]e and null__ :)
 
 For all the Gentoo users out there, just do
 
 export ECVS_SERVER=thinktux.net:/root
 
 before emerging, and portage will use the new mirror.
 
 Jesse
 

Aaah rock on! thx for that info!

and BIG thx to the swiss guys for the server. sourceforge's is really
annoying


pgpz8Egj5cXiA.pgp
Description: PGP signature


Re: [e-users] A NEW AnonCVS mirror

2005-10-31 Thread Curtis Napier

Jesse Luehrs wrote:

On Mon, 31 Oct 2005 18:43:48 +0900
Carsten Haitzler (The Rasterman) [EMAIL PROTECTED] wrote:



Thanks to our freinds at http://www.thinktux.net off in the Alps in
Switzerland, we have a new Anonymous CVS Mirror. This will NOT ALLOW
WRITES and it is not ALWAYS up to date with development CVS as it
syncs every 30 minutes from development CVS, BUT it is at most 30
minutes behind, and apparently has a lot of bandwidth. So thanks
om1n[A]e and null__ for helping set it up and managing it. You can
check the details here:

 http://www.enlightenment.org/Enlightenment/Get_Enlightenment/index.html

And you can check out a tree for e17 with this command:

 cvs -d :pserver:[EMAIL PROTECTED]/root co e17

So everyone having problems getting into sf.net anonymous CVS, this
is another option. :) Again. Thanks to om1n[A]e and null__ :)



For all the Gentoo users out there, just do

export ECVS_SERVER=thinktux.net:/root

before emerging, and portage will use the new mirror.

Jesse


---
This SF.Net email is sponsored by the JBoss Inc.
Get Certified Today * Register for a JBoss Training Course
Free Certification Exam for All Training Attendees Through End of 2005
Visit http://www.jboss.com/services/certification for more information
___
enlightenment-users mailing list
enlightenment-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-users



Thanks om1n[A]e and null__ for setting this up. Your contribution to the 
Enlightenment community is greatly appreciated!



---
This SF.Net email is sponsored by the JBoss Inc.
Get Certified Today * Register for a JBoss Training Course
Free Certification Exam for All Training Attendees Through End of 2005
Visit http://www.jboss.com/services/certification for more information
___
enlightenment-users mailing list
enlightenment-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-users


Re: [e-users] theming DR16 dragbar

2005-10-31 Thread Kim Woelders

Jorge Shirai wrote:

Is there any max size for the images of the dragbar (raise button
for example)? 
I'm trying to use an image that its width is 18 and Enlightenment

resize it to less than the orginal...


The dragbar size limit is 64 pixels, but you have to set the appropriate 
configuration parameter. In e16.8 that would be

$ eesh set desktops.dragbar_width 18
And restart.

/Kim


---
This SF.Net email is sponsored by the JBoss Inc.
Get Certified Today * Register for a JBoss Training Course
Free Certification Exam for All Training Attendees Through End of 2005
Visit http://www.jboss.com/services/certification for more information
___
enlightenment-users mailing list
enlightenment-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-users


Re: [e-users] e16 CVS doesn't Remember some startup apps

2005-10-31 Thread Kim Woelders

Peter Hyman wrote:

On Sat, 2005-10-29 at 11:56 +0200, Kim Woelders wrote:


I'll try this workaround. I wish it was documented. Did I miss it?



It is mentioned in README-0.16.8 :)

/Kim



Would somebody please hit me hard over the head! :) It's a terrific
feature and solves all my issues. Even though this works fine, have you
ever considered having an .e16/Autostart directory which could contain
any scripts to run in such cases? This would make e even more friendly
while still allowing the user to use eesh or edit the config file
manually.

In pseudo code, something like this on startup.

if exist .e16/Autostart then
  for all files in Autostart do
  if -x then execute it
  end
fi

and

if restarting e
if in restart and exist .e16/Restart
   for all files in Restart do
  if -x then execute it
  end
fi

Then, on shutdown

if exist .e16/Shutdown
   for all files in Shutdown do
  if -x then execute it
  end
fi


This is common practice for KDE and ROX which I know. Not a gnome
person, but I am sure it has it too.

Just my $0.02. Thanks for your effort and support.

I have considered doing this, but multiple display/screen setups would 
have to be handled in some way. e.g. by using .e16/Autostart-0.0/ etc., 
and I'm not sure that would make things much simpler in the end.
It would also add some extra complexity to e16, and I think that 
complexity could just as well be implemented in some external script(s) 
doing what you suggest. Maybe providing a sample script would be useful?


/Kim


---
This SF.Net email is sponsored by the JBoss Inc.
Get Certified Today * Register for a JBoss Training Course
Free Certification Exam for All Training Attendees Through End of 2005
Visit http://www.jboss.com/services/certification for more information
___
enlightenment-users mailing list
enlightenment-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-users


Re: [e-users] lost locales

2005-10-31 Thread Gerald Dachs
On Mon, 31 Oct 2005 11:13:47 +0100
Anders Trobäck [EMAIL PROTECTED] wrote:

 enlightenment_remote -lang-set de

that didn't help, it had to use exactly 'enlightenment_remote -lang-set [EMAIL 
PROTECTED]'

 Was this what you want?

To be honest, no. I would prefere that the setting of the environment variable 
LANG=de_DE would be enough, like it was some releases before.

Gerald


---
This SF.Net email is sponsored by the JBoss Inc.
Get Certified Today * Register for a JBoss Training Course
Free Certification Exam for All Training Attendees Through End of 2005
Visit http://www.jboss.com/services/certification for more information
___
enlightenment-users mailing list
enlightenment-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-users


Re: [e-users] segfault trying to run entrance on freebsd 6

2005-10-31 Thread Mathew Schofield

On 11/1/05, Mathew Schofield [EMAIL PROTECTED] wrote:

USE_LIBTOOL_VER=15, but that's not in any of theMakefiles, and it doesn't seem to make any difference having it in the 
environment, either.
I believe this is just a FreeBSD/Ports thing. The Special makefiles in /usr/ports/Mk/ do all sorts of cool things - but again, these are for FreeBSD and probably aren't being included in the Makefiles. 


Are you using the E17 from ports (Which is a bad idea considering how old it is) ?In terms of the tools you are using, what have you installed? Have you used the ports? Where have you installed them?
What version of FreeBSD is it? Version 6 yes, but is it i386? AMD64? Alpha? When's the last time you updated?

Most of these questions are irrelevant -: I will try try entrance tonight when i get home, and then attempt to help you. In the mean time, please give as much info as possible.-- Thank You
Mathew Schofield[EMAIL PROTECTED] -- Thank YouMathew Schofield
[EMAIL PROTECTED] 


Re: [e-users] E laggy?

2005-10-31 Thread The Rasterman
On Sat, 29 Oct 2005 16:51:15 -0500 Paul S. [EMAIL PROTECTED]
babbled:

 When I let e run for a while, it takes a literal second for the icons on
 the ibar or engage to respond or be highlighted and zoom out when I put
 my mouse over it.  This is after letting e run for a few hours.  I
 noticed on top that E is using 65mb of memory.  This is weird.
 Something seems amiss.
 Paul

i fixed an object leak i introduced changing the evas smart stuff. now it
doesnt leak anymore (according to my profiling). try update, rebuild evas and
see.

-- 
- Codito, ergo sum - I code, therefore I am --
The Rasterman (Carsten Haitzler)[EMAIL PROTECTED]
裸好多
Tokyo, Japan (東京 日本)


---
This SF.Net email is sponsored by the JBoss Inc.
Get Certified Today * Register for a JBoss Training Course
Free Certification Exam for All Training Attendees Through End of 2005
Visit http://www.jboss.com/services/certification for more information
___
enlightenment-users mailing list
enlightenment-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-users


Re: [e-users] lost locales

2005-10-31 Thread Anders Trobäck


Gerald Dachs wrote:

On Mon, 31 Oct 2005 11:13:47 +0100
Anders Trobäck [EMAIL PROTECTED] wrote:



enlightenment_remote -lang-set de



that didn't help, it had to use exactly 'enlightenment_remote -lang-set [EMAIL 
PROTECTED]'


Was this what you want?



To be honest, no. I would prefere that the setting of the environment variable 
LANG=de_DE would be enough, like it was some releases before.


Me too!



Gerald


---
This SF.Net email is sponsored by the JBoss Inc.
Get Certified Today * Register for a JBoss Training Course
Free Certification Exam for All Training Attendees Through End of 2005
Visit http://www.jboss.com/services/certification for more information
___
enlightenment-users mailing list
enlightenment-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-users


--


Microsoft is not the answer.
Microsoft is the question.
And 'No' is the answer!

Anders Trobäck
http://www.troback.com


---
This SF.Net email is sponsored by the JBoss Inc.
Get Certified Today * Register for a JBoss Training Course
Free Certification Exam for All Training Attendees Through End of 2005
Visit http://www.jboss.com/services/certification for more information
___
enlightenment-users mailing list
enlightenment-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-users