Re: [E-devel] focus issue

2008-03-05 Thread Jesse Luehrs
On Wed, 5 Mar 2008 23:50:04 +0100
"Brian 'morlenxus' Miculcy" <[EMAIL PROTECTED]> wrote:

> Will check that, thanks for the report.
> 
> Greets,
> Brian 'morlenxus' Miculcy
> 
> On Mon, Mar 03, 2008 at 12:54:00PM +0100, Massimo Maiurana wrote:
> > hi,
> > I compiled yesterday cvs and now looks like there are some problems
> > with focus settings.
> > I've always used "sloppy focus" and "only new dialogs get focus",
> > but now dialogs never get focus.
> > I tried setting "new windows get focus" and "focus follows pointer"
> > but still no luck, the only way to have dialogs get focus is to set
> > "focus follows mouse clicks"; that way either "only new dialogs get
> > focus" or "new windows get focus" works as expected.

I can confirm this, and I last built on Feb 8.

Jesse

-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] E17 : should xkill kill E?

2007-11-10 Thread Jesse Luehrs
On Sun, 11 Nov 2007 11:07:27 +1100
Erik de Castro Lopo <[EMAIL PROTECTED]> wrote:

> Carsten Haitzler (The Rasterman) wrote:
> 
> > it's actually impossible to fix.
> 
> A fix actually does include slightly hackish workarounds :-).
> 
> > why you don't see this is that other wm's don't go create a window
> > on the desktop below others.
> 
> Like that. Slightly hackish, but its what I have become used to.

The point is that there is no slightly hackish workaround, since xkill
is a very low level tool.

> > e can do this
> > for you. in fact it will quietly do it for you to clients that have
> > hung. if you just click close, e will send a ping off to the client
> > (if it supports pinging) and if that ping isn't answered in the
> > ping timeout (10 seconds) e will actually do the XKillClient() for
> > you assuming the app is so far gone, dead and buried.
> 
> 10 seconds is too long. I knew firefox was beyond recovery after 1
> second so I went for the hammer.
> 
> That said, because I tend to do a lot if x-displaying over an SSH
> tunnel which includes some WiFi, I often get situations where E is
> flashing the status bar of an application I know is just slow and not
> completely lost.
> 
> This to me seems to suggest that what you have in E is elegant, but
> not quite fit for purpose ;-).
> 
> > You can stuff xkill back into its little box now :)
> 
> I've been using E17 for about a year now I still find I need it.

You can also manually trigger E's kill command through the top left
window menu - just go to 'Kill' rather than 'Close'. This can also be
tied to keybindings (I think it's ctrl+alt+x by default, but I could be
wrong).

> Erik

Jesse

-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Starting programming in EFL

2007-09-10 Thread Jesse Luehrs
On Mon, 10 Sep 2007 19:57:57 -0400
Youness Alaoui <[EMAIL PROTECTED]> wrote:

> Yes, I tried them both, that's the first thing that made me like etk
> more than ewl, basically because of stability, since the ewl_test
> kept crashing for many of the widgets, and it had a huge amount of
> glitches. But also the look and feel seemed to be better. Simple
> example is the paned window, I like the animated arrows that ewl
> doesn't have. About the API, I know the ETK API now, but I don't know
> much about the EWL API yet, I'll probably look into it and see how it
> goes.. Thanks again for this helpful info.
> 
> KaKaRoTo

Side note, but I think this is a large part of it... I know "that's
just the default theme" or whatever, but the default ETK configuration
personally feels much more consistent and good looking than EWL. EWL
(in the little experience I've had with it) crashes more, doesn't
respect my font preferences, and just has lots of interface issues
which are very tiny, and not that noticeable on their own, but add up
to just having a not very clean feel. ETK has put forth a lot of effort
into making things look good and look consistent (both with itself,
and keeping up with the default e17 theme), and I think that has a lot
to do with overall perceptions of the two libraries. (Disclaimer: I've
written ETK apps, but I've never done any EWL programming, so I really
have no idea how nice EWL is internally... I'm just giving my end-user's
perspective on things.)

Jesse

-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Starting programming in EFL

2007-09-10 Thread Jesse Luehrs
On Mon, 10 Sep 2007 17:35:01 -0400
Michael Jennings <[EMAIL PROTECTED]> wrote:

> On Monday, 10 September 2007, at 17:02:44 (-0400),
> Youness Alaoui wrote:
> 
> > And did you not read my example of the sorting algorithm or did you
> > ignore it because you take offence to how I present it?
> 
> I don't take offense at your examples.  I don't even take offense at
> your excessive ad hominem attacks; to take offense, I would have to
> concede that you have the standing from which to make them.  I have
> not done so.
> 
> As I said, your example was simply incorrect.  Quicksort is O(n log n)
> in the average case and O(n^2) in the worst case.  Bubble sort is
> always O(n^2).  So, barring the inherent random variances in a small
> sample set, bubble sort will not be faster than quicksort, even for
> small data sets.  Feel free to consult
> http://en.wikipedia.org/wiki/Sorting_algorithm for the particulars.
> 
> Michael
> 

While it's true that bubble sort isn't ever going to be faster, that's
not just because it's always O(n^2). Insertion sort is also O(n^2), but
it does outperform quicksort on small data sets (under 10 elements or
so)... highly optimized sorting algorithms often use quicksort to sort
large data sets, but switch to insertion sort once the partitions drop
below a certain size, since it's faster. See
http://en.wikipedia.org/wiki/Insertion_sort for details.

Jesse

-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Patch for e_modules to add support to gettext with automake-1.10

2007-02-13 Thread Jesse Luehrs
On Tue, 13 Feb 2007 08:00:53 -0500
"Landry, Marc-Andre" <[EMAIL PROTECTED]> wrote:

> Hello all,
> great work, I would say amazing work! All the pieces are so great. Not
> only that you will been able to raise the money for the servers.
> Beside, I know, it was a long time ago I made a contribution to help
> on all the project to support automake-1.10 and is 'caprice'.
> 
> I took a day off last week to make all the modules happy whit
> automake-1.10 and here are those modification. It took time as I
> wanted to test all of them before sending the patch. I have seen no
> flaws beside that I haven't test all the linguas (= I also tried to
> correct some configure.in file that where missing some information to
> correctly got linked to gettext.
> 
> This patch shall not break anything as it touch mostly only the
> autogen.sh script.
> 
> Continue the great work, I will try to send more support for
> automake-1.10 later on. Beside I lost some mail on a crash that where
> talking about this. Can't remember if it was okay to exit if autopoint
> didn't work.
> 
> Sheer,
> LMA

You might want to take a look at the diff for net/autogen.sh again...

Jesse

-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier.
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] e_modules/cpu shelf patch

2006-06-30 Thread Jesse Luehrs


 Original message 
>Date: Fri, 30 Jun 2006 14:35:33 +0200
>From: Morten Nilsen <[EMAIL PROTECTED]>  
>Subject: Re: [E-devel] e_modules/cpu shelf patch  
>To: edevel 
>
>Massimo Maiurana wrote:
>> Tobias, il 30/06/2006 02:13, scrisse:
>>> Here's a patch for the cpu-module to make it play with the
shelf.
>>>
>>> I've changed the theme to look like the net and mem modules
>> 
>> personally I don't like bars to display data, especially if
they
>> represent values in steps of ten percents.
>
>aye.. a gage like cpu load is much more meaningful in a graph
than a
>snapshot bar..

s/cpu load/network traffic/

Maybe an option to switch between the two displays?

Jesse

Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Mem and net modules soaking up cycles.

2006-04-03 Thread Jesse Luehrs
On Tue, 4 Apr 2006 10:32:56 +1000
David Seikel <[EMAIL PROTECTED]> wrote:

> The mem and net modules slowly soak up the CPU cycles.  I've been
> playing with it for hours, here is my findings, speculation, and wild
> ramblings.
> 
> First, and most importantly, it's a very slow process.  CPU will start
> at one percent, and slowly creep up to ten percent over an hour.  I
> tracked it as high as 14 percent once.  As far as I can tell, it will
> just keep increasing CPU usage until it gets to 100 percent.  I'll
> leave it running when I sleep to check if it maxes out.
> 
> All other modules where unloaded, except the cpu module.  All other
> activity was kept to a minimum.  I sat there for hours doing nothing
> but watching the meters.  Desklock can't be disabled entirely, but
> moving the mouse a little bit every now and then keeps it at bay.  All
> meter modules where stretched across my 1024 x 768 monitor, set to 128
> pixels high, and updating once a second.
> 
> The problem only occurs when the graphs are turned on.  Having text
> turned on or not made no difference.  There doesn't appear to be any
> difference once the graphs reach the edge of the screen, the CPU usage
> kept growing.
> 
> Once the graphs where turned off, either through the modules config
> dialog, or disabling the modules, then CPU usage returned to one
> percent.
> 
> The problem appears most in mem, net had the same problem, but
> increased much slower.  The cpu module didn't display the problem at
> all.  mem and net look more like each other than cpu, so I started
> going through the differences between cpu and mem.
> 
> At first I thought that since I only have one cpu, the cpu module is
> different coz the others do two graphs (cpu module does one graph per
> cpu).  Disabled the code making the extra graph.  No change.
> 
> I noticed some differences in the .edc, so I made the mem one look
> more like the cpu one.  Made the mem module look much better, but
> otherwise no change.  
> 
> Since I have bugger all bandwidth, I suspected that the net graph
> might not be soaking those cycles coz it's not moving as many pixels
> compared to mem.  Clutching wildly at straws, I hard coded both the
> memory and swap used to 100 percent, thinking that it might soak
> cycles much faster.  No change.
> 
> I did notice one thing, it may or may not be related.  The second
> graphs on mem (swap) and net (Tx) where acting strangely.  The maximum
> length of each of those seemed to move to the right at the same speed
> as the graph itself moved to the left.  You don't notice anything
> until the graph gets halfway across the screen, then the moving
> section starts to get shorter, leaving either old lines, or blankness
> behind.  You have to see it to see what I mean.  There is nothing
> obvious in the code to explain this.
> 
> It could be some subtle difference between cpu and mem/net modules.
> It might be something totally unrelated elsewhere.
> 
> It's way past my bed time, so I'll pass the baton to devilhorns, and
> check in when I awake.  Hope the above is helpful, and that I didn't
> miss reporting anything.

I noticed this a few days and talked to devilhorns about it. He tested
it out, but didn't find anything. I've ran some more tests since then,
and it is almost definitely the graphs leaking memory. Having one of
cpu, net, and mem leaks slowly, two more quickly, and three within
about an hour or so. Disabling the graphs makes the issue disappear.

Jesse


---
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=lnk&kid=110944&bid=241720&dat=121642
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] font hinting

2006-03-12 Thread Jesse Luehrs
On Mon, 13 Mar 2006 09:02:39 +0900
Carsten Haitzler (The Rasterman) <[EMAIL PROTECTED]> wrote:

> On Sun, 12 Mar 2006 21:19:44 + Aleksej Struk <[EMAIL PROTECTED]>
> babbled:
> 
> > Hi all,
> > 
> > I a little bit confused with the last cvs. Before I sync my tree, I
> > have font hinting working fine. I had all the 3 options : a) byte
> > code b) automatic c) no hinting. After sync to the cvs, a cannot
> > selectt option a) anymore.
> > 
> > However, after taking a look into code, I notice, that
> > evas_font_hinting_can_hint(.., EVAS_FONG_HINTING_BYTECODE) returns 0
> > instead of 1. So, for me it seams, that basically evas cannot do
> > this type of hinting on my machine? right ?
> > 
> > So, can somebody explain, why it is so ?
> 
> freetype may be compiled with different hinting code. bytecode
> hinting is patented by apple and some distributions simply refuse to
> enable it in freetype2. by default it is not enabled in ft2. the
> ftoption.h file that gets installed SHOULD list what hinters are
> available via defines (no hinting is always available, then there's
> BYTECODE and UNPATENTED (auto hinting) hinting defines). the code in
> evas simply checks these values at compile time and then returns if
> its possible or not based on  these being defined or not. so far 1
> distribution already installs an ftoption.h that doesn't match the
> capabilities in the freetype2 that is installed. so it is possible
> that evas will get it wrong - but this is due to the headers
> installed at compile time. i know of no way to query RUNTIME what the
> features are so this is a bit of a bad api from ft2 in that ft2 could
> change  its build options without evas being recompiled against it
> and thus evas getting its capability checking wrong.

Gentoo has this problem because the freetype build just adds
-DTT_CONFIG_OPTION_BYTECODE_INTERPRETER to the CFLAGS before
building rather than editing header files. To detect if the bytecode
interpreter had been enabled, the freetype ebuild runs grep
on the binary for a string:

# Just a check to see if the Bytecode Interpreter was enabled ...
if [ -z "`grep TT_Goto_CodeRange ${S}/objs/.libs/libfreetype.so`" ]
then
ewarn "Bytecode Interpreter is disabled."
fi

This will fail if the binary has been stripped though, so that's
probably not much better of a solution.

I'm checking out right now if uncommenting the #define in ftoption.h
will fix the hinting issues with evas... I assume it should though.

Jesse


---
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=lnk&kid=110944&bid=241720&dat=121642
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


[E-devel] exhibit/etk segv

2006-02-13 Thread Jesse Luehrs
Exhibit segfaults inside etk while browsing through files, bt attached

Jesse

exhibit.bt
Description: Binary data


Re: [E-devel] Error compiling evas

2006-01-28 Thread Jesse Luehrs
On Fri, 27 Jan 2006 19:16:14 +0100
Martin Klaffenboeck <[EMAIL PROTECTED]> wrote:

> evas_engine.c: In function `evas_engine_buffer_output_setup':
> evas_engine.c:294: error: `EVAS_ENGINE_BUFFER_DEPTH_RGB32' undeclared
> (first use in this function)
> evas_engine.c:294: error: (Each undeclared identifier is reported only
> once
> evas_engine.c:294: error: for each function it appears in.)
> make[5]: *** [evas_engine.lo] Fehler 1
> make[5]: *** Warte auf noch nicht beendete Prozesse...
> evas_outbuf.c: In function
> `evas_buffer_outbuf_buf_push_updated_region': evas_outbuf.c:268:
> warning: passing arg 2 of pointer to function from incompatible
> pointer type
> 
> What should I do there?

Stop using thinktux, as it's pretty significantly broken at this point.

Jesse


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=103432&bid=230486&dat=121642
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Anonymous CVS & Servers - YOU CAN HELP!

2006-01-25 Thread Jesse Luehrs
On Wed, 25 Jan 2006 15:51:37 +0900
Carsten Haitzler (The Rasterman) <[EMAIL PROTECTED]> wrote:

> 3. Are people willing to donate enough $ to make it happen?

I could spare some cash(:

Jesse


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=103432&bid=230486&dat=121642
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


[E-devel] module config dialog patch

2005-12-19 Thread Jesse Luehrs
Attached is a patch that fixes the module config dialog so
that the advanced settings include the basic settings. This is
my first time working with the E source, so suggestions are
welcome(:

Jesse


module_config_advanced.patch
Description: Binary data


Re: [E-devel] module configuration

2005-12-18 Thread Jesse Luehrs
On Sun, 18 Dec 2005 19:40:58 -0600
Brian Mattern <[EMAIL PROTECTED]> wrote:

> The new module config dialog is looking nice. It doesn't currently
> fit in with the convention of basic  < advanced (imagine that that's
> a rounded 'is contained within' symbol, not a 'less than' symbol)
> that is used in most of the other dialogues. Could we add 
> enable/disable/configure buttons to the advanced dialog box?
> Also, the state of the buttons needs to be updated when you 
> enable/disable modules.

Also, clicking on buttons on any configuration dialog (not just module
ones) causes them to jump back to the center of the screen, which is
kinda annoying. And I don't think that the OK button should really ever
be grayed out (except possibly before any changes have been made).
Having to click cancel after clicking apply just seems kinda weird to
me.

Jesse


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Taskbar Module

2005-12-18 Thread Jesse Luehrs
On Mon, 19 Dec 2005 11:46:56 +1000
David Seikel <[EMAIL PROTECTED]> wrote:

> On Sun, 18 Dec 2005 19:35:11 -0600 Brian Mattern
> <[EMAIL PROTECTED]> wrote:
> 
> > I'm thinking about starting a taskbar module, and would like a few 
> > comments on what people want to see. Basic ideas so far:
> 
> I'm hoping that you are aware that both ibox and engage provide
> taskbar functionality?  Is there a reason you don't just add extra
> functionality to either of those?

Ibox does? How?

Jesse


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] What happens?

2005-12-07 Thread Jesse Luehrs
On Wed, 07 Dec 2005 13:38:11 +0100
Martin Klaffenboeck <[EMAIL PROTECTED]> wrote:

> Is there a way to have a session with nothing exept an xterm in
> entrance to choose?  Failsafe seems to load a wm (twm?), otherwise I
> could give you backtrace from e17, but hum - how can I make gentoo
> not to strip all the e17 binaries - this causes to have 'No debugging
> symbols' as far as I know?

export FEATURES="nostrip" before compiling. also, make sure you have -g
in your CFLAGS.

Jesse


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] e17 build error

2005-12-01 Thread Jesse Luehrs
On Thu, 01 Dec 2005 08:23:57 -0500
Mike Russo <[EMAIL PROTECTED]> wrote:

> I received the following autotools error regarding a missing
> Makefile.in file, and automake couldn't generate Makefile or
> configure. Files are being downloaded via emerge script via cvs.

The issue here seems to be that the thinktux mirror doesn't have the
gadget_test directory for some reason, probably because he missed the
-d option on cvs update or something. The sourceforge cvs server should
work, since it has that directory (I haven't actually tried it, but I
don't see a reason for it to not work).

Jesse


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Maximize ideas

2005-11-29 Thread Jesse Luehrs
On Tue, 29 Nov 2005 23:18:32 +0100
Andreas Volz <[EMAIL PROTECTED]> wrote:

> Hi,
> 
> I've some ideas about maximize windows and I like to hear your ideas
> or if this is on a TODO list. I categorize my E17 modules into two
> categories. The navigating and application modules and the less
> important modules like e.g. volume or clock. So I've a problem with
> maximizing windows. I'm not happy the the currently available maximize
> policies. They all care about desktop modules. So if I've a big clock,
> maximizing a window doesn't enlarge the window very much. The
> fullscreen policy fits most to my needs, but the the ibar, ibox and
> pager are overlaped.

I've had the sae problem... I think that being able to tell E to ignore
certain modules when determining size for SMART maximize policy would
be useful.

> So I like a fullscreen maximize with the
> exception to not overlap the lowest ~40 pixes of my screen. The same
> problem with window placement. I don't like E to place a window at
> the lowest ~40 pixel at my screen. This overlaps the navigation
> modules too. I know each person place this icons at another place,
> but many people like not to overlap their navigation modules.
> 
> So how to solve this situation? I used xfce4 for some time, before I
> switched to E. There's a configuration dialog where you could set some
> "never overlap" areas for the window manager. Is this an idea for E?

Something like -maximize-policy-set MANUAL, maybe, along with a few
commands to set the margins should be relatively easy I would think.

> See this shot of the xfce4 configuration dialog:
> http://www.loculus.nl/xfce/documentation/docs-4.2/images/workspace_margins.png
> 
> regards
> Andreas

Jesse


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] e17 (cvs) - menu strangeness

2005-11-09 Thread Jesse Luehrs
On Wed, 09 Nov 2005 20:18:48 -0600
Laurence Vanek <[EMAIL PROTECTED]> wrote:

> The frustrating thing is that I dont have a console eap to launch.
> Cant do anything useful once E is up.

If you installed e_utils, you should be able to use the 'Run Command'
option in the main menu to run things.

Jesse


---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42" plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] evolume-0.0.14ha1 gentoo ebuild

2005-10-29 Thread Jesse Luehrs
On Sat, 29 Oct 2005 18:19:04 +0200
Gabriel Rossetti <[EMAIL PROTECTED]> wrote:

> Hello,
> 
> Here is an ebuild for the latest evolume.
> 
> Put it in portage overlay :
> 
> /usr/local/portage/x11-plugins/evolume
> 
> then simply type as root :
> ebuild /usr/local/portage/x11-plugins/evolume/evolume-0.0.14.ebuild
> digest
> 
> and then install it with emerge.
> 
> Enjoy,
> Gabriel

S=${WORKDIR}/${P}-${MY_PV}

should be

S=${WORKDIR}/${PN}-${MY_PV}

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-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel