From fe27bc2388fcfbdd2085602301f5b166c8a57437 Mon Sep 17 00:00:00 2001 From: Joseph Ferano Date: Sat, 25 May 2024 14:40:10 +0700 Subject: [PATCH] qtile: float rules --- .config/qtile/config.py | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.config/qtile/config.py b/.config/qtile/config.py index 475b43f..f27350e 100644 --- a/.config/qtile/config.py +++ b/.config/qtile/config.py @@ -307,11 +307,22 @@ 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, + # This is the youtube music brave thing + Match(wm_class="crx_cinhimbnkkaeohfgghhklpknlkffjgod"), + Match(wm_class="p5py"), Match(wm_class="pygame"), + Match(wm_class="gnome-calculator"), Match(wm_class="confirmreset"), # gitk Match(wm_class="makebranch"), # gitk Match(wm_class="maketag"), # gitk Match(wm_class="ssh-askpass"), # ssh-askpass + Match(title="Alert!"), + Match(title="Please Confirm..."), + Match(title="Create New Node"), + Match(title="Select Frames"), + Match(title="Open a file"), + Match(title="Node Configuration Warning!"), + Match(title="Save Scene As..."), Match(title="branchdialog"), # gitk Match(title="pinentry"), # GPG key password entry ]