Re: [e-users] e16: better comment parsing in AclassConfigLineParse

2023-06-26 Thread Dennis Nezic
On 26 Jun 19:53, Kim Woelders wrote: > On 2023-06-25 19:22, Dennis Nezic wrote: > > Currently comments in bindings.cfg are parsed dumbly (but efficiently) > > as the first occurrence of '#', even if it occurs in a pair of quotes. > > Attached is a more intellige

Re: [e-users] e16: better comment parsing in AclassConfigLineParse

2023-06-26 Thread Dennis Nezic
Here's a slightly more robust inside of that for-loop, in case there are escaped quotes outside a quoted pair (eg. quotes in filenames?), not sure it's necessary to worry about these :p. if (*s3 == '\'' && (s3 == s || *(s3 - 1) != '\\')) { while (++s3https://lists.sourceforge.net/lis

[e-users] e16: better comment parsing in AclassConfigLineParse

2023-06-25 Thread Dennis Nezic
Currently comments in bindings.cfg are parsed dumbly (but efficiently) as the first occurrence of '#', even if it occurs in a pair of quotes. Attached is a more intelligent way that handles such quotes. "eesh exec" in a terminal, and the exec commands in the .menu files are both able to handle thi

[e-users] e16: matches.cfg documentation clarification

2021-11-23 Thread Dennis Nezic
In the description of the "Size" match value, in /usr/share/e16/config/matches.cfg it currently says: Size: {>|<}x What does {>|<} mean? Wouldn't this be more readable: Size: -x- Ie. it's expecting 4 values in that format. ___ enlightenment-us

Re: [e-users] e16 regex bugfix

2021-11-15 Thread Dennis Nezic
On Mon, 15 Nov 2021 12:53:51 +0100, Kim Woelders wrote: > On 11/15/21 06:53, Dennis Nezic wrote: > > On Mon, 15 Nov 2021 00:29:46 -0500, Dennis Nezic wrote: > >> On Sat, 13 Nov 2021 18:11:02 +0100, Kim Woelders wrote: > >>> On 11/13/21 16:17, Dennis Nezic wrote: >

Re: [e-users] e16 regex bugfix

2021-11-14 Thread Dennis Nezic
On Mon, 15 Nov 2021 00:29:46 -0500, Dennis Nezic wrote: > On Sat, 13 Nov 2021 18:11:02 +0100, Kim Woelders wrote: > > On 11/13/21 16:17, Dennis Nezic wrote: > > > On Sat, 13 Nov 2021 07:33:19 +0100, Kim Woelders wrote: > > >> On 11/13/21 05:18, Dennis Nezic wrote: >

Re: [e-users] e16 regex bugfix

2021-11-14 Thread Dennis Nezic
On Sat, 13 Nov 2021 18:11:02 +0100, Kim Woelders wrote: > On 11/13/21 16:17, Dennis Nezic wrote: > > On Sat, 13 Nov 2021 07:33:19 +0100, Kim Woelders wrote: > >> On 11/13/21 05:18, Dennis Nezic wrote: > >>> On Fri, 12 Nov 2021 17:48:50 +0100, Kim Woelders wrote: &g

Re: [e-users] e16 regex bugfix

2021-11-13 Thread Dennis Nezic
On Sat, 13 Nov 2021 07:33:19 +0100, Kim Woelders wrote: > On 11/13/21 05:18, Dennis Nezic wrote: > > On Fri, 12 Nov 2021 17:48:50 +0100, Kim Woelders wrote: > >> On 11/11/21 21:24, Dennis Nezic wrote: > >>> Here's a small patch for regex.c > >>&g

Re: [e-users] e16 regex bugfix

2021-11-12 Thread Dennis Nezic
On Fri, 12 Nov 2021 17:48:50 +0100, Kim Woelders wrote: > On 11/11/21 21:24, Dennis Nezic wrote: > > Here's a small patch for regex.c > > > > Currently, in matches.cfg, "Title *bla ..." will match any title > > with "bla" in it ... but it s

Re: [e-users] e16 regex bugfix

2021-11-11 Thread Dennis Nezic
// in s remaining to be matched, we should return 0 + if ((i < len) && (rx[l-1] != '*')) + return 0; + else + return match; + } } return match; } On Thu, 11 Nov 2021 15:24:52 -0500, Dennis Nezic wrot

[e-users] e16 regex bugfix

2021-11-11 Thread Dennis Nezic
Here's a small patch for regex.c Currently, in matches.cfg, "Title *bla ..." will match any title with "bla" in it ... but it should only match if the title ends in bla, right? By the way, the indentations in that file are ... weird :P. ___ enlightenme

Re: [e-users] [Enlightenment-release] e16-1.0.21

2019-12-19 Thread Dennis New
On Thu, 24 Oct 2019 19:18:17 +0200, Kim Woelders wrote: > e16-1.0.21 is available for download: > http://sourceforge.net/projects/enlightenment/files/ > > Just a couple of items: > - Add sndio sound back end for OpenBSD > - Menu generation speedups > > /Kim Thank you!

[e-users] e16 saveunders

2019-03-21 Thread Dennis New
What are they? There is a miscellaneous settings option for them: "Use saveunders to reduce window exposures" - what does that mean and what are the pros and cons of enabling them? ___ enlightenment-users mailing list enlightenment-users@lists.sourcefo

[e-users] e16 snapshots Remembered Application Attributes

2014-04-22 Thread Dennis New
I'd like e16 to remember my window attributes for all windows with a certain title, for example. I.e. if I have 8 xmessage windows open, I would like them all to have the same location/border/etc attributes. But, currently, trying to set the "Remember..." settings for one of them will only get appl

Re: [e-users] e16-1.0.10

2011-11-17 Thread Dennis Nezic
On Sun, 09 Oct 2011 16:49:24 +0200, Kim Woelders wrote: > e16-1.0.10 is available for download: > http://sourceforge.net/projects/enlightenment/files/ > > The purpose of this release is primarily to fix a few possibly quite > annoying bugs in 1.0.9: > > - Fix menu regeneration after updating fr

Re: [e-users] e16: systray draws/redraws

2011-09-26 Thread Dennis Nezic
On Sun, 25 Sep 2011 20:25:44 +0200, Kim Woelders wrote: > On Wed, 21 Sep 2011 20:29:47 +0200, Dennis Nezic > wrote: > > > Why do some systray icons draw/redraw properly (ie. if I move a > > window over them, then move it off), while others do not? > > > >

[e-users] e16: systray draws/redraws

2011-09-21 Thread Dennis Nezic
Why do some systray icons draw/redraw properly (ie. if I move a window over them, then move it off), while others do not? Systray icons, such as those from xchat or sylpheed get properly redrawn, but systray icons from ekiga or nm-applet do not -- they are painted white by the overlapping window,

[e-users] efm and session settings, again

2011-09-05 Thread Dennis Heuer
ke-up, shopping-tour, meeting, etc. Best wishes, Dennis Heuer -- Special Offer -- Download ArcSight Logger for FREE! Finally, a world-class log management solution at an even better price-free! And you'll get a free "L

Re: [e-users] e17 noob questions regarding window management and menus

2011-09-05 Thread Dennis Heuer
groups have more meaning than just tagging parts of a theme. Is there a way to provide different 'versions' of definitions (e.g. for composite on/off, and simple) or to make parts of a theme excludable (e.g. anim), or is this 'degree of freedom' hardcoded dialog-wise

Re: [e-users] e17 noob questions regarding window management and menus

2011-09-05 Thread Dennis Heuer
e?) Well, I'll possibly learn about this after my first self-written minesweeper in edje :) Best wishes, Dennis Heuer -- Special Offer -- Download ArcSight Logger for FREE! Finally, a world-class log management s

[e-users] e16 iconbox pager don't update window title

2011-09-04 Thread Dennis Nezic
If I change a window's title, say with xterm, "eesh wop current title whatever", neither the Iconbox nor the Pager show the updated title (when hovering over it). "eesh wl" does show it. -- Special Offer -- Download ArcSi

Re: [e-users] Yet Another Huh What???

2011-09-02 Thread Dennis Heuer
On Thu, 1 Sep 2011 17:06:32 +0200 Dennis Heuer wrote: > Possibly I have to clean it all up and re-start from scratch. What > about a file in trunk showing the correct installation order ;) I re-installed in the following order: Eina Eet Evas Ecore Embryo Edje Efreet E_Dbus Eeze Ei

Re: [e-users] flash settings popup neither reacting to clicks nor keyboard

2011-09-01 Thread Dennis Heuer
That worked, thanks. However, the popups worked under XFCE and Compiz. There's some trick for them to work, definitely! Best wishes, Dennis Heuer On Thu, 01 Sep 2011 13:45:11 +0100 Steve Jones wrote: > You can usually get it to work once (and once only) in a single > browser sessi

Re: [e-users] Yet Another Huh What???

2011-09-01 Thread Dennis Heuer
On Thu, 1 Sep 2011 08:26:30 +0900 Carsten Haitzler (The Rasterman) wrote: > On Wed, 31 Aug 2011 23:35:55 +0200 Dennis Heuer > said: > > the crash in wizard has been fixed if you update and recompile & > install. as for lang - i think its an old efreet cache floating about: &

[e-users] Yet Another Huh What???

2011-08-31 Thread Dennis Heuer
re, though E itself still did via its own desktop menue. I now restart the whole computer. If then still all is weird, I try to find all places in ~/ that should probably get deleted. Best wishes, Dennis Heuer -- Spe

Re: [e-users] Corrupted Configuration Files Causing Issues

2011-08-31 Thread Dennis Heuer
further problems appeared with the ibar for several logins. Modules still show up twice, though I couldn't find parallel installations or configurations. They work normal but tend to crash E. Hints welcomed! Best wishes, Dennis

[e-users] flash settings popup neither reacting to clicks nor keyboard

2011-08-31 Thread Dennis Heuer
creen and try to save the progress at the disk symbol: http://www.mochimedia.com/games/play/distress-signal Best wishes, Dennis Heuer -- Special Offer -- Download ArcSight Logger for FREE! Finally, a world-clas

[e-users] Compiler problems with trunk

2011-08-28 Thread Dennis Heuer
nd the plugin.) I'm stuck! Can anyone give me a hint how to make clang work with E17. I'd love to switch! Best wishes, Dennis Heuer -- EMC VNX: the world's simplest storage, starting under $10K The only un

Re: [e-users] Do you plan to provide an Exposé?

2011-08-26 Thread Dennis Heuer
t. if i did - i'd day so here. water to the mills: http://www.phoronix.com/scan.php?page=article&item=amd_llano_gallium3d&num=1 I'm still in hope for my coming fusion system (next year), Dennis Heuer -

Re: [e-users] e16: segfault introduced in 1.0.8

2011-08-25 Thread Dennis Nezic
On Wed, 24 Aug 2011 22:47:33 +0200, Kim Woelders wrote: > On Mon, 22 Aug 2011 16:47:36 +0200, Kim Woelders > wrote: > > > On Fri, 19 Aug 2011 00:51:02 +0200, Dennis Nezic > > wrote: > > > >> I'm not sure the exact action that causes it, but when I try

Re: [e-users] better handling of file moves

2011-08-25 Thread Dennis Heuer
safety copy or wants to break the action - the first time the mount point is crossed (and the target is the same or not a removable media - have no idea how to check this, I admit). Is this too paranoid? Best wishes, Dennis Heuer

Re: [e-users] No differentiation between only-mouse and mouse+window movement

2011-08-25 Thread Dennis Heuer
rally translated; I switched to English but the first two steps in the path still appeared in my language. I am using the official snapshot from 12/2010 though) Best wishes, Dennis Heuer -- EMC VNX: the world's simple

Re: [e-users] Do you plan to provide an Exposé?

2011-08-25 Thread Dennis Heuer
ited e17 still worked quite usably, though only if windows found place :) Best wishes, Dennis Heuer -- EMC VNX: the world's simplest storage, starting under $10K The only unified storage solution that offers unified mana

Re: [e-users] Do you plan to provide an Exposé?

2011-08-24 Thread Dennis Heuer
. Is this repo-only? Btw., I was able to switch on the compositor with OpenGL and Tex-to-Pix on my Radeon 9250 (RV280/128bit). But the speed is like in 2D-mode, no comparison to Compiz, except that workspace-switching is even slower. Best wishes

Re: [e-users] EFM hides from shell, panes and session managers

2011-08-24 Thread Dennis Heuer
The latter shows the same .desktop list as the former (in a differently sized window), though I'd expect a list of running apps. Best wishes, Dennis Heuer -- EMC VNX: the world's simplest storage, starting under $1

Re: [e-users] No differentiation between only-mouse and mouse+window movement

2011-08-24 Thread Dennis Heuer
'away' to have the pointer aside. In those cases, the timer doesn't help :( But I'll try your hint! Many thanks, Dennis Heuer -- EMC VNX: the world's simplest storage, starting under $10K The

Re: [e-users] EFM hides from shell, panes and session managers

2011-08-24 Thread Dennis Heuer
Just need to save this information and be able to reopen it > later safely. Eet should make that easy, but that's work to do, and > not on our priority list as far as I know. But that's very good news! E17 1.0 comes first,

[e-users] Proposal for a new efm view

2011-08-24 Thread Dennis Heuer
like this: # # # # Very_long_name_not_wa v # # # # details # # listed here v # # Best wishes, Dennis Heuer -- EMC VNX: t

Re: [e-users] translucent efm 'panes' to arrange a 'Desktop' per workspace

2011-08-24 Thread Dennis Heuer
n for you. yes and no :) Many thanks, Dennis Heuer -- EMC VNX: the world's simplest storage, starting under $10K The only unified storage solution that offers unified management Up to 160% more powerful than alter

[e-users] Something QML-like!?

2011-08-24 Thread Dennis Heuer
he developer of, say, a login screen straight into the object tree and let him 'do it all' from there. File access and other modules are a must, though, drawing in an access-management model.) Do you have thoughts to this?

[e-users] Session-/Login-Managers?

2011-08-24 Thread Dennis Heuer
Hello, my system is reduced to what I need, and that's why I keep GNOME or KDE stuff from my disk. But that brings in some annoyances like the broken and incapable X Session Manager or the 'basic' slim login-manager. Do you have plans in these directions? Best wishe

[e-users] Do you plan to provide an Exposé?

2011-08-24 Thread Dennis Heuer
Hello, because I switched from Compiz, I'm heavily missing the Exposé. Do you have one in the making? Best wishes, Dennis Heuer -- EMC VNX: the world's simplest storage, starting under $10K The only unifi

[e-users] No differentiation between only-mouse and mouse+window movement

2011-08-24 Thread Dennis Heuer
reats both cases via one option, only targeting the mouse as such. Other desktops offer separate options. Best wishes, Dennis Heuer -- EMC VNX: the world's simplest storage, starting under $10K The only unified sto

[e-users] better handling of file moves

2011-08-24 Thread Dennis Heuer
always move a copy to the trash bin if media borders are crossed. As far as I know, every media has its own trash bin. Best wishes, Dennis Heuer -- EMC VNX: the world's simplest storage, starting under $10K The only un

[e-users] With 'sloppy mode', sometimes focus doesn't follow mouse, though mouse actions are targeting correct window

2011-08-24 Thread Dennis Heuer
Hello, Trac told me that I'm a spammer, so I try to spam on here ;) The problem seems to appear when switching workspaces. The window under the mouse pointer is not focused but gets the clicks. The focused window gets the keyboard input. Best wishes, Dennis

[e-users] translucent efm 'panes' to arrange a 'Desktop' per workspace

2011-08-24 Thread Dennis Heuer
re 'highly' configurable (translucent background, no borders [i.e. only a handle or automated slide-in], profile-based on/off for drag&drop and access from 'using' to 'working with') 3. these panes are sticky! 4. they are remembered by the session manager Best wishes

[e-users] EFM hides from shell, panes and session managers

2011-08-24 Thread Dennis Heuer
This makes preserving 'views' for a continued session impossible. If efm is ought to behave 'out-of-bound', it enforces the use of multiple file managers with different look&feel. I'm not pleased by t

[e-users] e16: segfault introduced in 1.0.8

2011-08-18 Thread Dennis Nezic
I'm not sure the exact action that causes it, but when I try to rename a file in the popular file manager "rox", it pops up a mini-window to enter the new filename, and after I click ok/enter to close it, e16 segfaults: #0 0x00414464 in EwinBorderDraw (ewin=0x73bc50, do_shape=0, do_paint

Re: [e-users] e(16) and X memory usage

2010-11-25 Thread Dennis Nezic
On Sun, 21 Nov 2010 16:15:22 -0700, James Bowlin wrote: > On Sun, Nov 21, 2010 at 07:10 PM, Kim Woelders said: > > The menu resource leakage problem exists in 1.0.5 and 1.0.6, but not > > in 1.0.4 or 1.0.7. > > So, it seems to have been fixed along with other menu related > > problems in 1.0.7 :) >

Re: [e-users] e(16) and X memory usage

2010-11-21 Thread Dennis Nezic
On Sun, 21 Nov 2010 19:10:48 +0100, Kim Woelders wrote: > On Sun, 21 Nov 2010 18:36:51 +0100, Kim Woelders > wrote: > > > On Sun, 21 Nov 2010 17:51:37 +0100, Kim Woelders > > wrote: > > > >> On Sat, 20 Nov 2010 17:38:07 +0100, Dennis Nezic > >> w

Re: [e-users] e(16) and X memory usage

2010-11-20 Thread Dennis Nezic
On Sat, 20 Nov 2010 09:15:35 -0500, Dennis Nezic wrote: > On Sat, 20 Nov 2010 12:59:40 +0900, Carsten Haitzler (The Rasterman) > wrote: > > On Fri, 19 Nov 2010 22:07:59 -0500 Dennis Nezic > > said: > > > > xrestop > > > > use that to see if anythingis l

Re: [e-users] e(16) and X memory usage

2010-11-20 Thread Dennis Nezic
On Sat, 20 Nov 2010 12:59:40 +0900, Carsten Haitzler (The Rasterman) wrote: > On Fri, 19 Nov 2010 22:07:59 -0500 Dennis Nezic > said: > > xrestop > > use that to see if anythingis leaking x resources. other than that it > may simply be normal glibc memory growth. look at r

[e-users] e(16) and X memory usage

2010-11-19 Thread Dennis Nezic
I'm not sure if this question is appropriate here, but my X always seems to be growing in memory-use -- never shrinking. (Not even if I close everything except for e16 itself.) Do you suppose the window manager has something to do with this? Is there any way to free up this (useless / leaked?) memo

Re: [e-users] e16: pidgin's system tray icon passes mouse-clicks through

2010-05-05 Thread Dennis Nezic
On Sat, 17 Apr 2010 08:58:51 +0200, Kim Woelders wrote: > On Thu, 15 Apr 2010 19:12:39 +0200, Dennis Nezic > wrote: > > > Any idea why Pidgin's new-instant-message notification system-tray > > icon passes mouse clicks through to the window below it, while, for &g

Re: [e-users] e16: pidgin's system tray icon passes mouse-clicks through

2010-04-19 Thread Dennis Nezic
On Sat, 17 Apr 2010 08:58:51 +0200, Kim Woelders wrote: > On Thu, 15 Apr 2010 19:12:39 +0200, Dennis Nezic > wrote: > > > Any idea why Pidgin's new-instant-message notification system-tray > > icon passes mouse clicks through to the window below it, while, for &g

Re: [e-users] e16: new gvim(-type) windows may get placed off-screen

2010-04-15 Thread Dennis Nezic
On Fri, 16 Apr 2010 00:32:36 +0200, Kim Woelders wrote: > On Thu, 15 Apr 2010 19:01:26 +0200, Dennis Nezic > wrote: > > > On a crowded desktop (ie. if you just open a bunch of gvim windows), > > e16 will position new gvim windows so that the bottom gvim-status > >

[e-users] e16: pidgin's system tray icon passes mouse-clicks through

2010-04-15 Thread Dennis Nezic
Any idea why Pidgin's new-instant-message notification system-tray icon passes mouse clicks through to the window below it, while, for example, Xchat's doesn't? Pidgin's does respond to it, and then goes away (as it's supposed to), but also sends it to the window underneath -- which is annoying if,

[e-users] e16: new gvim(-type) windows may get placed off-screen

2010-04-15 Thread Dennis Nezic
On a crowded desktop (ie. if you just open a bunch of gvim windows), e16 will position new gvim windows so that the bottom gvim-status line is cut off screen (the last ~10 pixels?). (my 1200x800 desktop can't fit 2 502x412 gvim windows vertically.) When trying to resize the gvim window, it reports

[e-users] e16: how to test if a window has "skiplists" enabled

2010-03-19 Thread Dennis Nezic
"eesh wi" doesn't seem to mention the state of this variable. -- Download Intel® Parallel Studio Eval Try the new software tools for yourself. Speed compiling, find bugs proactively, and fine-tune applications for paralle

Re: [e-users] e16 alt-tabbing

2010-03-14 Thread Dennis Nezic
On Sun, 14 Mar 2010 15:38:13 -0400, Dennis Nezic wrote: > On Sun, 14 Mar 2010 12:01:33 -0400, Dennis Nezic wrote: > > On Sun, 14 Mar 2010 11:50:59 -0400, Dennis Nezic wrote: > > > Currently, when the focus list is enabled (during an Alt-Tab), it > > > raises the next w

Re: [e-users] e16 alt-tabbing

2010-03-14 Thread Dennis Nezic
On Sun, 14 Mar 2010 12:01:33 -0400, Dennis Nezic wrote: > On Sun, 14 Mar 2010 11:50:59 -0400, Dennis Nezic wrote: > > Currently, when the focus list is enabled (during an Alt-Tab), it > > raises the next window always, automatically, even though I have > > "Raise win

Re: [e-users] e16 alt-tabbing

2010-03-14 Thread Dennis Nezic
On Sun, 14 Mar 2010 11:50:59 -0400, Dennis Nezic wrote: > Currently, when the focus list is enabled (during an Alt-Tab), it > raises the next window always, automatically, even though I have > "Raise windows while switching focus" disabled. This is a problem if > I DON'T

[e-users] e16 alt-tabbing

2010-03-14 Thread Dennis Nezic
Currently, when the focus list is enabled (during an Alt-Tab), it raises the next window always, automatically, even though I have "Raise windows while switching focus" disabled. This is a problem if I DON'T want to raise the next one in the list (but rather another one further down.) ---

Re: [e-users] e16 Iconbox unknown question mark icon

2010-01-11 Thread Dennis Nezic
On Mon, 11 Jan 2010 18:25:44 +0100, Kim Woelders wrote: > On Mon, 11 Jan 2010 04:15:10 +0100, Dennis Nezic > wrote: > > > After upgrading to e16 1.0.1.002 (from 1.0.1), I noticed that some > > apps in my Iconbox now display a question-mark icon, where before > > t

[e-users] e16 Iconbox unknown question mark icon

2010-01-10 Thread Dennis Nezic
After upgrading to e16 1.0.1.002 (from 1.0.1), I noticed that some apps in my Iconbox now display a question-mark icon, where before they were a snapshotted mini-window. Being a question mark, I assume e16 knows there is no application icon for it, nor an e16 icon ... shouldn't it be using the wind

Re: [e-users] e16 bug when moving deceased window

2010-01-10 Thread Dennis Nezic
On Sun, 10 Jan 2010 10:52:24 +0100, Kim Woelders wrote: > On Sun, 10 Jan 2010 06:52:49 +0100, Dennis Nezic > wrote: > > > If a window closes in the process of being moved, weird things > > happen > > -- usually the mouse gets trapped within a box, and e16 stops &g

[e-users] e16 bug when moving deceased window

2010-01-09 Thread Dennis Nezic
If a window closes in the process of being moved, weird things happen -- usually the mouse gets trapped within a box, and e16 stops responding. X still works, but Alt-F'ing to a terminal and trying to "eesh restart" doesn't work. I am forced to kill X (Ctrl-Alt-Backspace). Here's a quick way to re

[e-users] e16 menus

2009-04-02 Thread Dennis Nezic
With a long menu (and a long submenu), the bottom portion of the submenu is not always visible on the screen. For example, if the submenu is located near the bottom of the menu, opening it will cause the menu to slide to the top of the screen (if the "always pop up menus on screen" option is set"),

Re: [e-users] e16 Special-key keybindings not working cont'd

2008-12-15 Thread Dennis Nezic
On Mon, 15 Dec 2008 19:11:03 +0100, "Kim Woelders" wrote: > On Mon, 15 Dec 2008 18:52:47 +0100, Dennis Nezic > wrote: > > > On Sun, 14 Dec 2008 17:20:40 +0100, "Kim Woelders" > > wrote: > > > >> On Sat, 13 Dec 2008 17:27:21 +0100, Denn

Re: [e-users] e16 Special-key keybindings not working cont'd

2008-12-15 Thread Dennis Nezic
On Sun, 14 Dec 2008 17:20:40 +0100, "Kim Woelders" wrote: > On Sat, 13 Dec 2008 17:27:21 +0100, Dennis Nezic > wrote: > > > On Wed, 10 Dec 2008 19:44:23 +0100, "Kim Woelders" > > wrote: > > > >> On Tue, 09 Dec 2008 21:54:07 +0100, De

Re: [e-users] e16 Special-key keybindings not working cont'd

2008-12-13 Thread Dennis Nezic
On Wed, 10 Dec 2008 19:44:23 +0100, "Kim Woelders" wrote: > On Tue, 09 Dec 2008 21:54:07 +0100, Dennis Nezic > wrote: > > > I posted a couple of months ago about this issue (end of august), > > and still haven't managed to resolve it :P. So, to recap:

[e-users] e16 Special-key keybindings not working cont'd

2008-12-09 Thread Dennis Nezic
I posted a couple of months ago about this issue (end of august), and still haven't managed to resolve it :P. So, to recap: * No keybindings of "special keys" work on my acer laptop keyboard (Option "XkbModel" "acer_ferrari4k") like XF86Mail, EuroSign, when e16 FIRST starts up--but they do with 'e

Re: [e-users] e16 bindings don't work after upgrading xorg

2008-09-08 Thread Dennis Nezic
> On Sun, 31 Aug 2008 23:56:04 -0400, > Dennis Nezic <[EMAIL PROTECTED]> wrote: > > I've tried e16 0.16.8.[12,13,14], and they all have this problem -- so > my guess is it's something with the updated xorg-server or > xf86-input-keyboard (1.3.1), or something to d

[e-users] e16 bindings don't work after upgrading xorg

2008-08-31 Thread Dennis Nezic
I'm stumped. I recently decided to upgrade to xorg-server 1.4.2, and tonnes of modular dependencies like xkeyboard-config which includes the data files in /usr/share/X11/xkb/*. (The newer versions of these data files have the symbols/inet for my keyboard -- before I had to manually enter them into

Re: [e-users] e16: NeverUseArea

2008-02-02 Thread Dennis Nezic
> On Fri, 01 Feb 2008 18:19:30 +0100, > Kim Woelders <[EMAIL PROTECTED]> wrote: > > I have changed the window placement code in an attempt to improve > placement on crowded desktops and when there are windows with > NeverUseArea attributes. Very cool. Although, I was able to get an overlap once

Re: [e-users] e16: NeverUseArea

2008-01-23 Thread Dennis Nezic
> On Mon, 21 Jan 2008 19:19:28 +0100, > Kim Woelders <[EMAIL PROTECTED]> wrote: > > Dennis Nezic wrote: > > Maybe I'm not understanding how the NeverUseArea window toggle flag > > works, but shouldn't it force e16 to /never/ place windows in the > >

[e-users] e16: NeverUseArea

2008-01-21 Thread Dennis Nezic
Maybe I'm not understanding how the NeverUseArea window toggle flag works, but shouldn't it force e16 to /never/ place windows in the specified area? If so, it doesn't seem to be working at the moment (v0.16.8.11). - This SF.

[e-users] e16 bug when re-enabling pager

2007-05-05 Thread Dennis Nezic
when starting e16 with the pager disabled (pagers.enable = 0), and then reenabling it (eesh pager on), although i am able to move windows around by clicking in the pager, the pager doesn't update itself (to the new window positions). even with snapshotting on, there is a brief delay, although i hav

Re: [e-users] exiting e16 doesn't close apps properly

2006-06-18 Thread Dennis Nezic
PROTECTED]> wrote: > > Dennis Nezic wrote: > > > when i exit my wm (e16), since it doesn't (and shouldn't) close any > > other programs, gvim is stuck without an x server, and doesn't > > handle this loss gracefully. effectively, it's as if it wa

[e-users] exiting e16 doesn't close apps properly

2006-05-13 Thread Dennis Nezic
when i exit e16 (which was started by my ~/.xinitrc file), i get the following on stderr, for example: __BEGIN__ waiting for X server to shut down The application 'gvim' lost its connection to the display :0.0; most likely the X server was shut down or you killed/destroyed the application. The ap

Re: [e-users] e16 pager size location in different display mode

2006-02-22 Thread Dennis Nezic
> On Mon, 20 Feb 2006 23:35:57 +0100, > Kim Woelders <[EMAIL PROTECTED]> wrote: > > Dennis Nezic wrote: > >>On Thu, 16 Feb 2006 00:01:15 +0100, > >>Kim Woelders <[EMAIL PROTECTED]> wrote: > >> > >>Dennis Nezic wrote: > >>

Re: [e-users] e16 pager size location in different display mode

2006-02-17 Thread Dennis Nezic
> On Thu, 16 Feb 2006 00:01:15 +0100, > Kim Woelders <[EMAIL PROTECTED]> wrote: > > Dennis Nezic wrote: > >>On Tue, 14 Feb 2006 19:26:29 +0100, > >>Kim Woelders <[EMAIL PROTECTED]> wrote: > >> > >>Dennis Nezic wrote: > >>

Re: [e-users] e16 pager size location in different display mode

2006-02-15 Thread Dennis Nezic
> On Tue, 14 Feb 2006 19:26:29 +0100, > Kim Woelders <[EMAIL PROTECTED]> wrote: > > Dennis Nezic wrote: > > i may have spoken too soon. although it does work when i start e > > under a non-native resolution (but same aspect ratio), (it didn't > > work b

Re: [e-users] e16 pager size location in different display mode

2006-02-13 Thread Dennis Nezic
> On Sun, 12 Feb 2006 20:07:34 -0500, > Dennis Nezic <[EMAIL PROTECTED]> wrote: > > > On Sun, 12 Feb 2006 11:55:49 +0100, > > Kim Woelders <[EMAIL PROTECTED]> wrote: > > > > Kim Woelders wrote: > > > Dennis Nezic wrote: > > > >

Re: [e-users] e16 pager size location in different display mode

2006-02-12 Thread Dennis Nezic
> On Sun, 12 Feb 2006 11:55:49 +0100, > Kim Woelders <[EMAIL PROTECTED]> wrote: > > Kim Woelders wrote: > > Dennis Nezic wrote: > > > >>with my current e16.8 (current to 2006/01/24), when i startx using a > >>non-native resolution (native being

Re: [e-users] e16.8.2 is using nearly 100% of my cpu.

2006-02-10 Thread Dennis Nezic
i remember having a similar problem a while ago when i upgraded my e16... and, if i remember correctly, i "fixed" it by deleting my ~/.e16 folder, and reconfiguring e =\. (i had my menus backed up) > On Fri, 10 Feb 2006 18:26:40 +0100, > sam <[EMAIL PROTECTED]> wrote: > > hi, I'm using gentoo and

[e-users] e16 pager size location in different display mode

2006-02-07 Thread Dennis Nezic
with my current e16.8 (current to 2006/01/24), when i startx using a non-native resolution (native being 1280x800 ... problem case being 640x480, for example), the pager window gets resized (enlarged) a bit (320x48 to 352x56, for example), and moved a bit (up one pixel [0,609] to [0,608], for examp

Re: [e-users] keybindings sometimes don't work bug?

2005-10-20 Thread Dennis Nezic
> On Thu, 20 Oct 2005 18:47:48 +0200, > Kim Woelders <[EMAIL PROTECTED]> wrote: > ... > Sorry, I cannot reproduce this, or maybe I don't quite understand the > problem. Could you please specify exactly what the problem is and how > you trigger it? When "Focus follows pointer", open a gtk applica

Re: [e-users] keybindings sometimes don't work bug?

2005-10-19 Thread Dennis Nezic
> On Tue, 18 Oct 2005 09:07:50 +0900, > Carsten Haitzler (The Rasterman) <[EMAIL PROTECTED]> wrote: > > ... let me guess - it only happens when NO app window is focused > (there are no apps on the screen or none has the focus) ? i also have this bug with my 2-day old (e16.8) cvs. and, indeed, it _

Re: [e-users] Fast mouse scrolling problem

2005-10-18 Thread Dennis Nezic
> On Mon, 17 Oct 2005 19:19:30 +0200, > Kim Woelders <[EMAIL PROTECTED]> wrote: > > Dennis Nezic wrote: > >>On Mon, 17 Oct 2005 11:30:36 -0400, > >>Dennis Nezic <[EMAIL PROTECTED]> wrote: > >> > >>hmm, and finally, i just discovered that

Re: [e-users] Fast mouse scrolling problem

2005-10-17 Thread Dennis Nezic
> On Mon, 17 Oct 2005 11:30:36 -0400, > Dennis Nezic <[EMAIL PROTECTED]> wrote: > > hmm, and finally, i just discovered that the stalling only seems to > occur if the window has focus. hmm. also, if "focus follows mouse clicks" instead of pointer

Re: [e-users] Fast mouse scrolling problem

2005-10-17 Thread Dennis Nezic
> On Mon, 17 Oct 2005 10:01:49 +0900, > Carsten Haitzler (The Rasterman) <[EMAIL PROTECTED]> wrote: > > ... > > they both seem to produce the same output in xev, both mouse > > scrollwheel and keyboard scrollwheel, both during regular scrolling > > and stuttered scrolling. the only difference being

Re: [e-users] Fast mouse scrolling problem

2005-10-16 Thread Dennis Nezic
> On Sat, 15 Oct 2005 14:45:02 +0900, > Carsten Haitzler (The Rasterman) <[EMAIL PROTECTED]> wrote: > > On Mon, 26 Sep 2005 22:35:01 -0400 Dennis <[EMAIL PROTECTED]> > babbled: > > > On Sat, Oct 23, 2004 at 10:53:42AM -0400, Dennis wrote: > > > On 10/2

Re: [e-users] Fast mouse scrolling problem

2005-09-26 Thread Dennis
On Sat, Oct 23, 2004 at 10:53:42AM -0400, Dennis wrote: > On 10/23/04 04:03, Kim Woelders wrote: > >Dennis wrote: > > > >>The problem (scrolling too fast freezes the scrolling for a few secs) > >>only exists when i have "Clicking in a window always raises it&q

[e-users] window screen shots

2005-08-14 Thread Dennis
is there a way to screen capture the contents of an entire window - even if it's not visible? (ie. if the window is larger than the screen dimensions). import and gimp only seem to copy the visible portions of the window. but i'm sure the full image must be buffered somewhere, no? --

Re: [e-users] Right-Alt + Shift + L/R Arrow

2005-01-01 Thread Dennis
> On Sat, 01 Jan 2005 13:13:34 -0800, Jonathan Charnas wrote: > > Dennis wrote: > > >in e16keyedit, i currently have Alt+Shift+left/rightArrow set to > >"move to desktop area on the left/right". and this is indeed what it > >does when i use the left-alt

[e-users] Right-Alt + Shift + L/R Arrow

2005-01-01 Thread Dennis
in e16keyedit, i currently have Alt+Shift+left/rightArrow set to "move to desktop area on the left/right". and this is indeed what it does when i use the left-alt button. however, when i use right-alt+shift+left/rightArrow, something bizarre happens. ctrl- seems to be prepended to all my keystroke

Re: [e-users] Fast mouse scrolling problem

2004-10-23 Thread Dennis
On 10/23/04 04:03, Kim Woelders wrote: Dennis wrote: The problem (scrolling too fast freezes the scrolling for a few secs) only exists when i have "Clicking in a window always raises it" enabled. Although, i can still use my keyboard to scroll, during the "freeze". My mouse a

Re: [e-users] Re: Fast mouse scrolling problem

2004-10-21 Thread Dennis
The "remedy" only seems to work in some applications (ie. firefox, gvim) .. but not all (ie. not in xterm, xfe). Odd. On 10/21/04 20:16, Dennis wrote: I have also noticed that the stuttering can be "remedied" my mixing in a few keystrokes. Even "shift" or the arr

[e-users] Re: Fast mouse scrolling problem

2004-10-21 Thread Dennis
I have also noticed that the stuttering can be "remedied" my mixing in a few keystrokes. Even "shift" or the arrow keys do the trick. Odd. Why would keystroke events fix the stuttering ... or, how would the lack of them cause stuttering. Question and more questions.

  1   2   >