hi!
I came back to Fvwm and feel how it’s cool.
I lost my old configs. So I decided to write new config from the scratch.
I have some problems with Fvwm which solutions couldn’t find here or in FAQ or man (well…;D).
Here are my problems:
-
Problems with WindowList
a. How can I raise a window during selection? I wish to highlight window (raising it, or highlight just border).
I tried to add to WindowListFunc:
[code]AddToFunc WindowListFunc
- I Current Raise[/code]
But WindowListFunc works after selecting
b. I wish to see windows only from CurrentPage.
Key Tab A M WindowList (CurrentPage)
It works but I wish to send current window at the end.
Key Tab A M WindowList (CurrentPage), NoGeometry, CurrentAtEnd, IconifiedAtEnd
It doesn’t work correctly
Key Tab A M WindowList Root c c CurrentDesk, NoGeometry, CurrentAtEnd, IconifiedAtEnd
This code works fine, but it’s for CurrentDesk ;/
2. Problems with resizing windows
[code]DestroyFunc ResizeFunc
AddToFunc ResizeFunc
- “M” Resize[/code]
a. This function works fine but only if you want to increase the window. If you want smaller window, first you have to move a pointer to the window’s frame. Is it possible to decrease a window without moving pointer to the border first?
b. I like geometry information during resizing. But this info appears in top-left corner of the screen. How to place it at the center of the resizing window?
c. Is it possible remove grid? Just to have frame while resizing?
3. Menu
a. I use TrianglesSolid and they apper only if i’m currently on popup position. so normally they are hidden. how to show them up?
b. I wish to have one menu with automagic-generate menu. Something similar to GNOME/KDE/etc menus…with categories of applications. How to do that?
4. Thumbnails
a. How to set spot on the desk where thumbs should be placed?
b. The icon above screenshot doesn’t appear. What is wrong?
[code]DestroyFunc Thumbnail
AddToFunc Thumbnail
- I Raise
- I ThisWindow (!Shaded, Iconifiable, !Iconic, ) PipeRead
“xwd -silent -id $[w.id] |
convert -resize $[ThumbWidth]x$[ThumbHeight] -frame 1x1
-mattecolor black -quality 0
xwd:- png:$[ThumbDirectory]/icon.tmp.$[w.id].png
&& echo WindowStyle IconOverride, NeverFocus
Icon $[ThumbDirectory]/icon.tmp.$[w.id].png
|| echo Nop” - I Iconify[/code]