Questions tagged [window-managers]

A Window Manager is a service on most modern OSes which provides the UI for manipulating the location and sizes of windows.

A Window Manager is a service on most modern operating systems which provides the UI for manipulating the location and sizes of windows. Some go further, and provide the ability to open or close applications, and display applets.

For example, since Vista, Microsoft Windows has used Desktop Window Manager to handle the display and composition of windows.

The many desktop environments available for Unix/Linux, such as GNOME (Mutter) and KDE (KWin), all provide window managers, among other software.

440 questions
2
votes
1 answer

Terminal in XLIB Window Manager not receiving key presses from "OnBoard" on screen keyboard

Consider the following minimal window manager found online. It compiles and runs fine. #include #include #include int main() { Display *display; Window window; XEvent event; int s; /* open…
CygnusVis
  • 31
  • 2
2
votes
1 answer

What should a Window Manager do with a ConfigureRequestEvent?

For my sins (and for fun the learning experience) I am writing a window manager (I know, I know). I'm using python and XCB (python-xpyb). So far I have figured out that I need to use a SubStructureRedirect mask on the root window(s), and I am…
DaedalusFall
  • 8,335
  • 6
  • 30
  • 43
2
votes
0 answers

How to disable favourites from loading when using the Super key

I am not a new Linux user but I am new to Gnome which is the preferred WM at work so I'm trying to get it to work they way I prefer. The primary issue is that I want to have key-bindings of Super+1, Super+2, etc.. to switch between windows. I have…
Dubby
  • 2,290
  • 4
  • 27
  • 38
2
votes
0 answers

Xlib ConfigureRequest with custom configuration not working

I am using python and python3-xlib (which is a pure python implementation of the Xlib interface but basically is very similar to the C Xlib). For educational purposes, I am trying to create a simple window manager which should be able to force…
fameman
  • 3,451
  • 1
  • 19
  • 31
2
votes
1 answer

LightDM add Window Manager (Openbox)

I'm running my application (GUI) in kiosk mode via LightDM. This works fine, but i'm having a hard time including openbox to it. My application simply has no borders or decorations, although i'm setting openbox as user-session…
David
  • 1,084
  • 12
  • 36
2
votes
1 answer

android.view.WindowManager$BadTokenException on custom dialog

My application crashes with below error stack on specific android version and device (VIVO with android 5.1 & Oneplus one with Android 7.1) *_ android.view.WindowManager$BadTokenException: at android.view.ViewRootImpl.setView…
2
votes
2 answers

Programming in Enlightenment Window Manager

¿Has anyone programmed in this window manager? ¿How was your experience? Oh, and besides the e17 official tuts & docs, ¿is there any other source for tutorials?
Gastón
  • 167
  • 2
  • 10
2
votes
3 answers

XMonad: Overview of All Currently Opened Windows

In XMonad is there any way to see an overview of all the currently used workspaces including their current windows at a time? I think it's a very practical piece of software but I have not found any extension that does something like this. Unless…
Anton Harald
  • 5,772
  • 4
  • 27
  • 61
2
votes
1 answer

Android use grey overlay on screen as dimming, fadeing

I bought myself a android car unit and came at the conclusion that the minimum brightness is still to bright when driving in the night. There is a clever app called screen filter that (i think it works like this) uses a overlay over the screen to…
Lithium
  • 23
  • 6
2
votes
1 answer

i3 wm append_layout command

According to i3 documentation : i3 append layout system append_layout program should be available since i3 4.8 I don't have the append_layout i3 program in my path. sudo find / -name "append_layout" | wc -l 0 my linux version is a Debian Jessie up…
utopman
  • 581
  • 4
  • 13
2
votes
1 answer

How to get Window reference (CGWindow, NSWindow or WindowRef) from CGWindowID in Swift?

How to get Window reference (CGWindow, NSWindow or WindowRef) from CGWindowID in Swift on XCode 7.3 Mac Playground? I referenced from Apple's document - Window Manager Reference, and from the sample code SonofGrab, but I didn't find an answer in…
allenlinli
  • 2,066
  • 3
  • 27
  • 49
2
votes
0 answers

Make top level window transparent for mouse clicks

I want to be able to redirect mouse clicks to the window below my application. An example: My application is arranged like in the picture below. The red rect is the invisible border of my top level window. No I cant click the close button of the…
ManuelSchneid3r
  • 15,850
  • 12
  • 65
  • 103
2
votes
0 answers

Any reason that zenity wouldn't bring a dialog into focus?

I am using Zenity 3.10.2 and any time I use Zenity, regardless of dialog type, the dialog it brings up has focus. i.e. I can straight away press "Enter" straight away and proceed. (I need this ability for automation) However, there is one exception…
mgibson
  • 6,103
  • 4
  • 34
  • 49
2
votes
0 answers

Export QWidget as a QSystemTrayIcon

I am trying to put "Application Menu" org.kde.plasma.kicker at my tiling window manager which does implement XEmbed protocol of the X11, without starting the KDE system tray. For that, I can call the "Application Menu" plasmoid/applet from within…
hyiltiz
  • 1,158
  • 14
  • 25
2
votes
0 answers

WindowManager addview not working in GcmListenerService

I'm trying to build an app that when receiving GCM message from Google's GCM server, then I can show a notification on the top of the screen like Facebook's app Messenger. My problem is: The code windowManager.addView(chatHead, params); in…