1
0
mirror of https://github.com/gryf/wmaker.git synced 2025-12-23 14:42:29 +01:00

switchpanel: Add skip_switchpanel advanced option

Some applications running in my machine are only background
windows, e.g.: screenlets showing CPU usage.

In current wmaker version all these applications pollute my
switchpanel, so I wrote this patch (thanks Carlos for the helping me).

It includes an additional advanced option for windows "Do not
include in switchpanel" which, if set, allows applications to
not appear in the switchpanel.

Signed-off-by: Haroldo Santos <haroldo.santos@gmail.com>
This commit is contained in:
Haroldo Santos
2011-02-17 14:56:36 -02:00
committed by Carlos R. Mafra
parent 077a2eaa71
commit c82138eab9
6 changed files with 67 additions and 37 deletions

View File

@@ -32,11 +32,12 @@
#define WA_FOCUSABLE (1<<6)
#define WA_OMNIPRESENT (1<<7)
#define WA_SKIP_WINDOW_LIST (1<<8)
#define WA_FLOATING (1<<9)
#define WA_IGNORE_KEYS (1<<10)
#define WA_IGNORE_MOUSE (1<<11)
#define WA_IGNORE_HIDE_OTHERS (1<<12)
#define WA_NOT_APPLICATION (1<<13)
#define WA_DONT_MOVE_OFF (1<<14)
#define WA_SKIP_SWITCHPANEL (1<<9)
#define WA_FLOATING (1<<10)
#define WA_IGNORE_KEYS (1<<11)
#define WA_IGNORE_MOUSE (1<<12)
#define WA_IGNORE_HIDE_OTHERS (1<<13)
#define WA_NOT_APPLICATION (1<<14)
#define WA_DONT_MOVE_OFF (1<<15)
#endif