Hi there,
I configured qtile so that dialog window float (see below). And they do.
However if I move my mouse in the area of the floating window, and then
out of the area of the floating window, they will move to the background.
The problem with this is, I cannot reach them till I move all other
windows from the group somewhere else.
Is there an option to force floating windows to stay at the front?
-- Niklas
@hook.subscribe.client_new
def floating_dialogs(window):
dialog = window.window.get_wm_type() == 'dialog'
wclass = window.window.get_wm_class() == 'gcr-prompter'
transient = window.window.get_wm_transient_for()
if dialog or transient or wclass:
window.floating = True
full config at
https://github.com/metaswirl/dotfiles/blob/master/qtile_config.py
--
You received this message because you are subscribed to the Google Groups
"qtile-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.