From 7187a987a84b712d512924eeff935024678b1b51 Mon Sep 17 00:00:00 2001 From: Derek Taylor Date: Mon, 7 Aug 2023 07:23:33 -0500 Subject: [PATCH] Working on a new qtile config. --- .config/qtile/config.py | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/.config/qtile/config.py b/.config/qtile/config.py index 2752313..54fa9ab 100644 --- a/.config/qtile/config.py +++ b/.config/qtile/config.py @@ -532,11 +532,15 @@ floating_layout = layout.Floating( float_rules=[ # Run the utility of `xprop` to see the wm class and name of an X client. *layout.Floating.default_float_rules, - Match(wm_class="confirmreset"), # gitk - Match(wm_class="makebranch"), # gitk - Match(wm_class="maketag"), # gitk - Match(wm_class="ssh-askpass"), # ssh-askpass - Match(title="branchdialog"), # gitk + Match(wm_class="confirmreset"), # gitk + Match(wm_class="makebranch"), # gitk + Match(wm_class="maketag"), # gitk + Match(wm_class="ssh-askpass"), # ssh-askpass + Match(title="branchdialog"), # gitk + Match(title='Confirmation'), # tastyworks exit box + Match(title='Qalculate!'), # qalculate-gtk + Match(wm_class='kdenlive'), # kdenlive + Match(wm_class='pinentry-gtk-2'), # GPG key password entry Match(title="pinentry"), # GPG key password entry ] )