diff options
author | Justine Smithies <justine@smithies.me.uk> | 2023-09-12 20:16:26 +0100 |
---|---|---|
committer | Justine Smithies <justine@smithies.me.uk> | 2023-09-12 20:16:26 +0100 |
commit | 04c8324c5f5e39eb02b1ccdca8d3d24035f9057a (patch) | |
tree | 322a77c4371e569869f53c46fbabf7b51d941167 /.config/qtile | |
parent | 99b1b59a1f700ec9b2742928bef71fba8b72e9f6 (diff) |
Make pinentry-qt float for gpg
Diffstat (limited to '.config/qtile')
-rw-r--r-- | .config/qtile/layouts.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.config/qtile/layouts.py b/.config/qtile/layouts.py index 52eeb64..f16df00 100644 --- a/.config/qtile/layouts.py +++ b/.config/qtile/layouts.py @@ -51,7 +51,7 @@ floating_layout = layout.Floating( Match(wm_class='maketag'), # gitk Match(wm_class='ssh-askpass'), # ssh-askpass Match(title='branchdialog'), # gitk - Match(title='pinentry'), # GPG key password entry + Match(wm_class='pinentry-qt'), # GPG key password entry Match(func=lambda c: c.is_transient_for()), # automatically float a window if it has a parent ], ) |