FVWM: popup menus stay on top, please? #906

2023-09-26 Thread Harald Dunkel

Hi folks,

is there an option to make sure the F8 popup menu of xtigervncviewer is
shown on top of the program's window itself? Just by accident I discovered
the popup actually "pops under" sometimes, hiding it from the user.

I have set
```
#
# Transient Windows
#
Style   *   DecorateTransient, RaiseTransient, DontLowerTransient, 
StackTransientParent
Style   *   UseTransientPPosition
```
(inherited from my old fvwm2 config), but these popups are not decorated,
so either they are not transient, or something overrides fvwm. Talking
about fvwm2: I cannot reproduce the problem with fvwm2, usiing the same
config file.


Regards
Harri



FVWM: fvwm3: how to make qmmp2 sticky?

2023-07-31 Thread Harald Dunkel

Hi folks,

using fvwm3 and

Style   "qmmp" NoTitle, WindowListSkip, Sticky, StaysOnBottom

qmmp2 (https://sourceforge.net/projects/qmmp-dev/files/qmmp/2.1/) is not
sticky. The other attributes from the list work as expected. Similar
Styles like

Style   "xclock" NoTitle, WindowListSkip, Sticky, Icon clocks.xpm

show no problem with Sticky. I can also make qmmp2 sticky using the builtin
"Stick" command. How comes the Sticky style doesn't work? Can anybody
reproduce this?

Platform is Debian 12 or Sid, fvwm3 is version 1.0.7, qmmp2 is version 2.1.4.


Regards

Harri



FVWM: fvwm: ../../src/xcb_io.c:626: _XAllocID: Assertion `ret != inval_id' failed.

2023-04-04 Thread Harald Dunkel

Hi folks,

sometimes fvwm 2.70 (built by Debian) dies with

Apr 04 10:15:29 [FVWM_SMDEBUG] Saving 
/local/home/harri/.fvwm/.fs-restart-cecil.afaics.de:4
Apr 04 10:15:30 [FVWM_SMDEBUG] Loading 
/local/home/harri/.fvwm/.fs-restart-cecil.afaics.de:4
Apr 04 10:15:30 [fvwm][__execute_function]: <> No such command 
'DesktopConfiguration'
Apr 04 10:15:30 [fvwm][style_parse_and_set_window_style]: <> Bad style 
option: MWMDecorHints
Apr 04 10:15:30 [fvwm][ParseBinding]: <> Got mouse button 8 when the 
maximum is 5.
Apr 04 10:15:30   You can't bind complex functions to this button.  To suppress 
this warning, use:
Apr 04 10:15:30   Silent Mouse 8A   A   Menu Window-Ops 
Nop
Apr 04 10:15:30 [fvwm][ParseBinding]: <> Got mouse button 9 when the 
maximum is 5.
Apr 04 10:15:30   You can't bind complex functions to this button.  To suppress 
this warning, use:
Apr 04 10:15:30   Silent Mouse 9A   A   Exec xterm &
Apr 04 10:15:30 [fvwm][scanForPixmap]: <> Couldn't load image from 
pavucontrol.png
Apr 04 10:15:30 [fvwm][scanForPixmap]: <> Check that FVWM has support 
for the filetype it's being asked to load.
Apr 04 10:15:30 fvwm: ../../src/xcb_io.c:626: _XAllocID: Assertion `ret != 
inval_id' failed.
Apr 04 10:15:30 /local/home/harri/.xinitrc: line 120:  9022 Aborted 
${WINDOWMANAGER}

on an internal restart.

Does this ring a bell?

Regards
Harri



FVWM: fvwm3 build error

2020-09-06 Thread Harald Dunkel

Hi folks,

Trying to build fvwm3 on Debian I stumbled over this:

:
:
Making all in FvwmBacker
make[4]: Entering directory 
'/local/home/harri/debian/fvwm3/fvwm3-1.0.0/modules/FvwmBacker'
gcc -DHAVE_CONFIG_H -I. -I../..  -I../..   -Wdate-time -D_FORTIFY_SOURCE=2  
-Wall -Wno-implicit-int -fno-common -g -O2 
-fdebug-prefix-map=/local/home/harri/debian/fvwm3/fvwm3-1.0.0=. 
-fstack-protector-strong -Wformat -Werror=format-security -c -o FvwmBacker.o 
FvwmBacker.c
gcc -DHAVE_CONFIG_H -I. -I../..  -I../..   -Wdate-time -D_FORTIFY_SOURCE=2  
-Wall -Wno-implicit-int -fno-common -g -O2 
-fdebug-prefix-map=/local/home/harri/debian/fvwm3/fvwm3-1.0.0=. 
-fstack-protector-strong -Wformat -Werror=format-security -c -o root_bits.o 
root_bits.c
FvwmBacker.c: In function 'AddCommand':
FvwmBacker.c:703:7: error: format not a string literal and no format arguments 
[-Werror=format-security]
  703 |   CatString2("Unknown directive: ", line));
  |   ^~
cc1: some warnings being treated as errors
make[4]: *** [Makefile:540: FvwmBacker.o] Error 1
make[4]: Leaving directory 
'/local/home/harri/debian/fvwm3/fvwm3-1.0.0/modules/FvwmBacker'
make[3]: *** [Makefile:450: all-recursive] Error 1
make[3]: Leaving directory '/local/home/harri/debian/fvwm3/fvwm3-1.0.0/modules'
make[2]: *** [Makefile:510: all-recursive] Error 1
make[2]: Leaving directory '/local/home/harri/debian/fvwm3/fvwm3-1.0.0'
make[1]: *** [Makefile:451: all] Error 2
make[1]: Leaving directory '/local/home/harri/debian/fvwm3/fvwm3-1.0.0'


I had to set -Wno-error=format-security to make.

Patch is attached.


Regards
Harri
--- modules/FvwmBacker/FvwmBacker.c.orig	2020-08-17 00:59:05.0 +0200
+++ modules/FvwmBacker/FvwmBacker.c	2020-09-06 20:24:09.046545910 +0200
@@ -699,8 +699,7 @@
 	}
 	else
 	{
-		fvwm_debug(__func__,
-			   CatString2("Unknown directive: ", line));
+		fvwm_debug(__func__, "Unknown directive: %s", line);
 		return;
 	}
 	this->flags.do_ignore_desk = do_ignore_desk;


Re: FVWM: Fvwm3-RC0 is released

2020-09-02 Thread Harald Dunkel

On 9/1/20 2:20 AM, Thomas Adam wrote:


Please do give this a try.  See:

 https://github.com/fvwmorg/fvwm3/releases/tag/1.0.0-rc0



Cool, thanx very much.

A slightly older version of fvwm can be found here, if you are
interested:

https://www.ibiblio.org/pub/historic-linux/ftp-archives/tsx-11.mit.edu/Oct-07-1996/sources/usr.bin.X11/fvwm-0.91b.tar.gz

The path in this URL is not correct; it is actually from 1993.
See also this historic document:

https://www.linux.co.cr/desktops/review/1993/0721.html.


Regards
Harri



Re: FVWM: focus stealing

2019-05-24 Thread Harald Dunkel
On 5/24/19 1:17 PM, Thomas Adam wrote:
> 
> See:  http://fvwmforums.org/wiki/Tips/FocusStealing/
> 
> -- Thomas Adam
> 

My bad, I had expected some Style here. Thanx for the hint


Harri





FVWM: focus stealing

2019-05-24 Thread Harald Dunkel
Hi folks,

the man page doesn't tell (AFAICS), so I wonder how I could prevent
chrome, rocketchat-desktop and others from stealing input focus (using
FocusFollowsMouse)?


Every helpful comment is highly appreciated
Harri



Re: FVWM: how to escape F1?

2019-03-11 Thread Harald Dunkel

On 3/8/19 1:39 PM, Stephen Dennison wrote:


Perhaps I'm misunderstanding the request, but you could also just use a
modifier like the num lock key.  As long as you are *not* ignorning modifiers,
you can press numlock and then the key presses will all go to applications and
fvwm will ignore them.  Then when you want fvwm to pay attention again, just
turn off numlock.



Perfect, thanx very much


Harri



FVWM: how to escape F1?

2019-03-08 Thread Harald Dunkel

Hi folks,

I have defined several function keys for fvwm, but sometimes I
would like to send F1 (for example) to the app running in the
window, bypassing fvwm's function bound to it.

Is there some hidden function to temporarily disable the
Key bindings to forward *any* key combination to the window
with input focus?

Hopefully I wasn't too blind to see. Every helpful comment is
highly appreciated.


Regards
Harri



Re: FVWM: Java applications don't get keyboard focus

2017-07-28 Thread Harald Dunkel
AFAICS MouseFocus is the default for X. If you run a xterm instead 
of fvwm, then it is easy to reproduce the problem: The Java app 
still tries to enforce ClickToFocus, AFAICS.

In this setup the Java folks cannot hide behind "fvwm bug".


Regards
Harri




Re: FVWM: The Future of fvwm Development

2016-11-15 Thread Harald Dunkel
On 11/12/2016 07:59 AM, Marco Maggi wrote:
> 
>   I  do not  follow the  devel  mailing list.   There is  a single  very
> selfish request  I have: continue to  allow fvwm to fully  configure the
> use of the  keyboard (I have fvwm intercept the  function keys (F1, ...)
> to do stuff for me, and it is my killer feature).
> 

I would second that, but my 3 top level wishlist items would be:

- please don't make the taskbar mandatory
- please don't make dbus mandatory
- keep it simple

Sorry to say, but in the last few years I have seen so many valuable
projects making a turn into a weird direction. I wouldn't like to see
this happen to fvwm.


Regards
Harri




symbolic links in default-config/Makefile.am

2016-11-12 Thread Harald Dunkel
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Hi folks,

default-config/Makefile.am says

install-data-hook:
cp -r $(srcdir)/images $(inst_location)
ln -sf $(inst_location)/FvwmScript-DateTime $(inst_location)/..
ln -sf $(inst_location)/FvwmScript-ConfirmQuit $(inst_location)/..
ln -sf $(inst_location)/FvwmScript-ConfirmCopyConfig $(inst_location)/..

Since inst_location is an absolute path this makes the fvwm installdir
non-relocatable. Do you think this could be fixed, e.g. by using hard
links instead?


Thanx in advance
Harri
-BEGIN PGP SIGNATURE-

iQEzBAEBCAAdFiEEH2V614LbR/u1O+a1Cp4qnmbTgcsFAlgnNL4ACgkQCp4qnmbT
gctMzAgAgBGgUbgh+yi4Z+RXaMA8mZMZ81cK3b7pJpLnaBA/GLPE1ubxk6fjDVhz
s6SMF2Jp7+xQ6ClrzSpDRiGJsH9LqZNYyGR2cviDVH0vhLWQLsBPw30yhhk7AGen
TFgx+Z4fSgrF/jbAAjRQSjn/evuaQyf3FLiPux5jx5VCq6cHrWFA3xAq7x9kZ/q1
K1sS4zjhr7DYUhPi1KTeVPGfKC27E2ENI0mpwOrRRVatXTB452dHYQ3em/D5JlKY
i+9RIfVsu9v2F2DrKDzibIeudRpBzXPcJfJJv90kaQQjeAMRq7kTAO7+HuK+J+JO
s8GhirqIH6JbNueBzYPajEvgk2Xapg==
=3KPa
-END PGP SIGNATURE-



FVWM: chromium: no refresh on deiconify

2014-11-21 Thread Harald Dunkel
Hi folks,

Seems that chromium (38 or 39) doesn't refresh when it is deiconified.
I just get a white rectangle with the usual fvwm decorations.
Using chrome I just get a transparent window without decorations.
Good ol' twm doesn't show this problem.

fvwm is version 2.6.5, as it can be found in Jessie. .fvwm2rc has been 
taken from the examples directory.

Can anybody reproduce this? Every helpful is highly appreciated.
Harri


.fvwm2rc
Description: Binary data


Re: FVWM: new chromium windows off screen

2014-07-15 Thread Harald Dunkel
On 07/10/14 21:24, Dominik Vogt wrote:
 
 Yes, it is confusing, and that's one of the first things I'd clean
 up if it ever came to fvwm-3.x.  Meanwhile, the options are just
 there for backwards compatibility.  However, I've noticed that the
 old options are still used in the man page.  I'll change that in a
 minute.
 

fvwm3? Col. I am using fvwm since the early beginnings in 1993.


Regards
Harri




Re: FVWM: new chromium windows off screen

2014-07-10 Thread Harald Dunkel
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

On 06/19/14 23:15, Dominik Vogt wrote:
 On Fri, Jun 06, 2014 at 02:14:47PM +0200, Harald Dunkel wrote:
 
 Found it: Its !UsePPosition instead of NoUsePPosition.
 
 Note that the correct name in NoPPosition, not NoUsePPosition.
 

Does this mean that NoUsePPosition is not supported at all?
Maybe its just me, but I think the man page about NoUsePPosition,
NoPPosition, !UsePPosition, !USPosition, etc is *highly* confusing.

Maybe it would help to drop the No in front of on/off flags
completely?


Regards
Harri

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQEcBAEBCAAGBQJTvsXOAAoJEAqeKp5m04HLTd8H/1GXY0KlQDsj0M2KExjIhzpy
UATLOY5g1JBpSDR07ZJqzJa78mKhhAa2tLTzX5dReiLiO5Mt2WjLbiohAVwDDg4p
XdSE6P/IbKDYKgIXnRjYpySQk73qkEjLSQmmFHwMaM9oHO+5EioVKvK5kCymEWQT
P8Ue57ljuyD2Jf0I0igX3yRYJSTATqRNTTkVFZ7IPZcytGAHvvpzzLqLxqAHleba
wgvs7GMmZO7L5JRPvxVnDCMhQYOFyB5iiIpOCMbzd79wsMSM7LkeGym+tuiLQZXu
w0mlAGWpyv0mxYpSEQmjmdJSDfbMlLbvh2rgw77VKJBDijfW6myUGROLvkwYDqs=
=WO0H
-END PGP SIGNATURE-



Re: FVWM: new chromium windows off screen

2014-06-06 Thread Harald Dunkel
On 06/05/14 18:10, Dominik Vogt wrote:
 On Thu, Jun 05, 2014 at 10:36:08AM +0200, Harald Dunkel wrote:
 Is there any style I could use to tell fvwm to ignore chromium's
 window placement wishes, and to follow the regular window placement
 policy instead?
 
 Certainly, the question is *which* one.  :-)
 
 If you put
 
   BugOpts ExplainWindowPlacement on
 
 in your config file fvwm will emit messages explaining why the
 windows end up where they do.  If you post that output I can give
 hints what to try.
 

Found it: Its !UsePPosition instead of NoUsePPosition.

Thanx very much
Harri




FVWM: ftp://ftp.fvwm.org/pub/fvwm/devel/snapshots/ out of date

2012-03-23 Thread Harald Dunkel
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi folks,

I just wonder what happened to ftp://ftp.fvwm.org/pub/fvwm/devel/snapshots/?
It is out of date for 3 months now. Is this service canceled?


Regards

Harri
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.12 (GNU/Linux)

iEYEARECAAYFAk9so4MACgkQUTlbRTxpHjcL7ACeKq5gLQrRzx27rCgb7lanselk
0J4An0G53qmj4vDD+zBt//F0sUM2pu7B
=fOnR
-END PGP SIGNATURE-



FVWM: wishlist item: resize window to fill up unused space

2011-10-15 Thread Harald Dunkel
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi folks,

I would like to tell fvwm to horizontally or vertically resize
a window until it hits either another window on the same layer,
or the screen edge.

Maybe I am wrong, but AFAIR such a feature was in years ago
(or was it in vtwm?).


Any helpful comment would be highly appreciated

Harri
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)

iEYEARECAAYFAk6ZnJgACgkQUTlbRTxpHjc/1gCggZtdSkC1vGsWyVvhMnzCJC3d
BGcAn3HT0+S+GUA+WEvTmSfXYIqYv7x8
=P15k
-END PGP SIGNATURE-



ancient fvwm found

2011-10-14 Thread Harald Dunkel
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi folks,

I have found the sources of fvwm-0.91b.tar.gz (1993) on an
old tape. It seems to be identical to the fvwm found on
http://ftp.gwdg.de/pub/misc/tsx-11/sources/usr.bin.X11/

It would be a shame to loose it. Maybe you could add it to
the old versions in the downloads directory?


Regards

Harri
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)

iEYEARECAAYFAk6YvMQACgkQUTlbRTxpHje35gCdE1YgzLnrkTWoEQscr2rBZHAh
ZUgAn0z7/L7RffYUkkrAZHrwN1gsWUFX
=e2aw
-END PGP SIGNATURE-



FVWM: assign focus

2011-03-19 Thread Harald Dunkel
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi folks,

I have to work alot with virtual machines (kvm) and VNC sessions.
For this I would like to assign keyboard focus to a window, until
I press some magic escape sequence (e.g. the left and right ctrl
keys in parallel). I need a way to send something like Ctrl-Alt-F1
or Ctrl-BS to the vnc session. The X server, Fvwm and others should
not interfere with that, while focus is assigned. VNC's fullscreen
mode is not sufficient for this.

Probably this is OT here, but maybe somebody has an idea? Any helpful
comment would be highly appreciated.


Regards

Harri
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

iEYEARECAAYFAk2FMQ0ACgkQUTlbRTxpHjdfkgCfYNkuREuR1td96YWcnRmjwfqJ
rF8An3i2/0yddtBnifxl8bW6F513Dr0k
=kUpK
-END PGP SIGNATURE-



Re: FVWM: vmware player doesn't show

2010-04-29 Thread Harald Dunkel
On 04/29/10 13:27, Thomas Adam wrote:
 
 http://communities.vmware.com/thread/107947
 

Seems to work, many thanx.

How comes? The registered position in the VMware
preferences file doesn't seem invalid. Even if it
would be off-screen, Alt-Tab should list it.

???


Regards

Harri



Re: FVWM release 2.5.29?

2010-04-03 Thread Harald Dunkel
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On 04/03/10 04:04, Thomas Adam wrote:
 On 22 March 2010 05:28, Harald Dunkel ha...@darkharri.de wrote:
 It would be very nice if such a patch could get into the next release.
 
 Please try the CVS version -- hopefully fixed now.
 

Seems to work. No more blind spots for MinOverlapPlacement,
AFAICS. I keep it installed.

 Sorry for the delay on this.
 

No problem. Many thanx for the fix.


Regards

Harri
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.10 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

iEYEARECAAYFAku3NbEACgkQUTlbRTxpHjcBbQCeLhNjAQ9xtxD9PQmNb2ikVaUC
PhYAnjseMMsGvM3bBCoCkjErhrsT/H78
=ddZi
-END PGP SIGNATURE-



FVWM: fvwm mailing list server

2010-03-23 Thread Harald Dunkel
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi folks,

is there some easy way to manage the mailing list subscriptions? The
confirmation mail mentioned a sever

http://lists.math.uh.edu/

but this seems to be unreachable. And managing subscriptions via
EMail is _way_ too error prone and annoying.

I would like to replace my old EMail address by a new one. For other
mailing ist managers this is no problem.


Regards

Harri
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.10 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

iEYEARECAAYFAkupBkgACgkQUTlbRTxpHjeQmACfTUJ/vSlfbwdP9r0dItDlSmuE
7IgAn3Kq4pWP1MR3SVnRhS3AXFx70rmZ
=Gnem
-END PGP SIGNATURE-



Re: FVWM: fvwm mailing list server

2010-03-23 Thread Harald Dunkel
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On 03/23/10 20:34, Thomas Adam wrote:
 
 But this is how Majordormo works.  It's not Mailman, thankfully.
 

As you might imagine, the fvwm mailing list is not the only one I have
to notify about the address change. Maybe mailman is more difficult
to manage (I cannot say), but it is much more user friendly.

90% (at least) of all mailing lists I am subscribed too are using
mailman.

Sorry to post OT here.


Regards

Harri
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.10 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

iEYEARECAAYFAkupK+wACgkQUTlbRTxpHjewtwCfVxxxE1tqfP0KWsUxuu+ibDoT
7i0AmwYFScCIjZafkQIZN/c52jAJQw1a
=txZ0
-END PGP SIGNATURE-



Re: FVWM: Restart doesn't work on dual screen

2008-11-28 Thread Harald Dunkel
Dominik Vogt wrote:
 On Mon, Nov 24, 2008 at 06:47:09PM +0100, Harald Dunkel wrote:
 I am running the snapshot of yesterday (2008/11/23) on 2 screens. The second
 screen gets its own fvwm. Both share the same .fvwm2rc file, AFAICS.

 Problem: If I click on [Restart] on the first screen, then its fvwm exits
 instead. Twm is started as a fallback. The error log file says

 [fvwm.0][SetupICCCM2]: ERROR another ICCCM 2.0 compliant WM is running, 
 try -replace

 The fvwm on the second screen is still running.
 
 How do you start fvwm (what does the command line look like).
 

Here is my .xinitrc script:

#!/bin/bash
(fvwm || twm)  wmpid=$!
sleep 1
test -f .xmodmap  xmodmap .xmodmap
xterm -bg black -fg white -sb 
wait $wmpid
exit 0

On a restart the parent fvwm, which is managing screen 0, exits
instead of being restarted, and twm drops into its place. The
child fvwm keeps screen 1, and twm complains that it cannot access
all screens.


Regards

Harri




FVWM: Restart doesn't work on dual screen

2008-11-24 Thread Harald Dunkel
Hi folks,

I am running the snapshot of yesterday (2008/11/23) on 2 screens. The second
screen gets its own fvwm. Both share the same .fvwm2rc file, AFAICS.

Problem: If I click on [Restart] on the first screen, then its fvwm exits
instead. Twm is started as a fallback. The error log file says

[fvwm.0][SetupICCCM2]: ERROR another ICCCM 2.0 compliant WM is running, try 
-replace

The fvwm on the second screen is still running.


In a new session:
If I click in [Restart] on the second screen, then its fvwm is restarted. The
first fvwm doesn't notice. Both window managers are running independent from
each other after this. Both can be restarted without being kicked out.


Regards

Harri




Re: fvwm eats up all cpu power

2008-08-20 Thread Harald Dunkel

Hi Dominik,

Dominik Vogt wrote:

On Mon, Aug 18, 2008 at 07:59:28PM +0200, Harald Dunkel wrote:

I've got a problem with fvwm on Linux (current snapshot as well
as fvwm-2.5.24):

run xine (without arguments)
right click on the movie window
select Settings -- Setup
select the video tab
select the video driver to use drop down menu
scroll to the end and select the last entry

After that fvwm used up a complete CPU (100%). A backtrace showed
where it got stuck:


 * Which xine-Version?



Sorry, surely I should have been more precise. It is the
xine ui as included in Debian unstable. xine --version says

This is xine (X11 gui) - a free video player v0.99.6cvs.
(c) 2000-2007 The xine Team.


 * When I open the video driver to use list, I get a decorated
   list window that appears below the headline of the box first but
   jumps to the middle of the screen.



In my setup the list window has just a one-pixel frame. It does not
jump, but it stays below the headline.


 * How do you scroll to the end of the list?  By pulling the
   scrollbar?



Either by pulling the scrollbar, or by clicking on the
down arrow below the scrollbar.


 * What is the name of the list entry you select?



The last one is xvmc. But AFAICS it already dies on scrolling
the list for just one entry. Before scrolling the list I can
select the list items as expected. After scrolling I cannot
select any item from the list. Just moving the mouse over the
items seems to break it.


 * How do you select it?  By clicking on it with the mouse?

For me, *xine* eats up 50% to 100% of one cpu all the time. 


Sorry, I forgot to mention this. xine eats up the other CPU.
If I kill xine, then fvwm is still at 100%. The window
decorations of the xine ui and around the list window are
still visible.

OTOH, if I keep xine and kill fvwm, then xine is back to normal.


Can
you please send me your fvwm and xine configuration files?



I verified the problem using /usr/share/fvwm/ConfigFvwmDefaults
(taken from the CVS) and xine's default configuration.

BTW, here is the config information printed at fvwm's build time:

Fvwm Configuration:

  Version: 2.5.27 (from cvs)

  Executables: /usr/bin
  Man pages:   /usr/share/man
  Modules: /usr/lib/fvwm/2.5.27
  Data files:  ${prefix}/share/fvwm
  Doc files:   ${prefix}/share/doc/fvwm
  Perl lib:${prefix}/share/fvwm/perllib
  Locale msg:  ${prefix}/share/locale  ar de fr sv_SE zh_CN

  With Asian bi-direct. text support? yes
  With Gettext Native Lang support?   yes (libc)
  With GTK+ required for FvwmGtk? yes
  With GDK image support in FvwmGtk?  yes
  With GNOME libs support in FvwmGtk? no: Can't find working gnome-config
  With Iconv support? yes (from C library)
  With Mouse strokes (gestures)?  yes
  With PNG image support? yes
  With ReadLine sup. in FvwmConsole?  yes
  With RPlay support in FvwmEvent?yes
  With Shaped window support? yes
  With Shared memory for XImage?  yes
  With Session Management support?yes
  With SVG image support? no: librsvg library or header not found
  With Xcursor support?   yes
  With Xinerama multi-head support?   yes
  With Xft anti-alias font support?   yes (version 2)
  With XPM image support? yes
  With Xrender image support? yes
  Build man pages?yes
  Build HTML documentation?   no

Attached you can find the output of xine --verbose=5. I reproduced
the problem, then I killed fvwm, and terminated xine using its menu.


Regards

Harri



xine2.log.gz
Description: Unix tar archive


Re: FVWM: 2.5.25: problem with VirtualBox seamless windows

2008-03-23 Thread Harald Dunkel

I tried the CVS snapshot of today (20080323): Seems to work.


Many thanx

Harri
-
Viktor Griph wrote:

On Tue, 18 Mar 2008, Harald Dunkel wrote:


Viktor Griph wrote:


Can you try to pinpoint a CVS date where it changes from working to 
not working?




Sure. AFAICS the problem came up with fvwm-snap-20080210. The
version of the day before seems to work better in this case.


I've comitted a fix for this error.

/Viktor







Re: FVWM: 2.5.25: problem with VirtualBox seamless windows

2008-03-18 Thread Harald Dunkel

Viktor Griph wrote:


Can you try to pinpoint a CVS date where it changes from working to not 
working?




Sure. AFAICS the problem came up with fvwm-snap-20080210. The
version of the day before seems to work better in this case.

Attached is a diff between both versions.


Regards

Harri



diff.20080209-20080210.gz
Description: Unix tar archive


FVWM: 2.5.25: problem with VirtualBox seamless windows

2008-03-17 Thread Harald Dunkel

Hi folks,

Since fvwm 2.5.25 there seems to be a problem running VirtualBox in
seamless windows mode: On moving a Windows window the background
or other windows are not refreshed.

The current snapshot of today (20080317) does not work. But moving
back to fvwm 2.5.24 makes the problem go away.

Can anybody reproduce this?


Regards

Harri




firefox input focus problem

2008-01-19 Thread Harald Dunkel

Hi folks,

Playing with Firefox 3.0b2 on Linux (Debian amd64) I see that sometimes
there are problems with input focus, if I right-click on a link to open
it in a new window. In the worst case the first Firefox window never
gets input focus again, unless I close all derived windows.

I tried this using the fvwm snapshot from yesterday. Can anybody
reproduce this?


Regards

Harri




java GUIs? Oh no, not again!

2007-11-27 Thread Harald Dunkel

Hi folks,

Running Netbeans or other Java applications there are
problems with autoraise and automatic input focus. It
doesn't work. All kinds of windows are managed as
expected, except for the Java GUIs. Using Gnome, KDE,
enlightenment or even good old vtwm there is no such
problem.

I saw this mentioned several times before, but there was
nothing helpful. (Or did I miss something?)

Is there any chance that you sit together with the Java
folks to get this problem solved?


Regards

Harri





Re: java GUIs? Oh no, not again!

2007-11-27 Thread Harald Dunkel

Hi Thomas,

Thomas Adam wrote:


Right, and you would have seen various references pointing using
things like 'Lenience' as a style option which *might* help, but
there's no guarantee of that.



Of course I had tried

Style   NetBeans*   NeverFocus, Lenience

before. Sorry, I should have mentioned it in my first post.


Is there any chance that you sit together with the Java
folks to get this problem solved?


We've tried before.  It's not something Sun seem to bothered to fix.



Maybe they are more open if we can show that other window
managers need some dirty workarounds to manage Java GUIs,
or that AWT applications are not ICCCM compliant in general.


Regards

Harri



Re: MouseFocus doesn't work for Java GUIs

2007-03-05 Thread Harald Dunkel

Viktor Griph wrote:

On Sun, 4 Mar 2007, Harald Dunkel wrote:


Hi folks,

It seems that MouseFocus doesn't work with Java GUIs sometimes.
If I move the mouse into the Java window (e.g. tv-browser, or
the Accurev GUI), then the Window doesn't become active. Even
if I click on the header the title bar gets selected for a
second (it seems to be waiting for something), but after that
the Java Window is not selected.

???

Platform is native amd64. fvwm is the CVS head of 2 days ago.
Java is 1.5.0-11.


Any help would be highly appreciated.




Use the lenient focus policy.

/Viktor




This did not help.

Please note that there is some random behavior. The Java
GUIs get focus _sometimes_, but not always.


Regards

Harri