Update .config/qtile/colors.py
Update .config/qtile/config.py Add .config/qtile/config_test_new.py Update .config/qtile/groups.py Update .config/qtile/keys.py Update .config/qtile/layouts.py
This commit is contained in:
parent
63872c9051
commit
869b78936c
6 changed files with 224 additions and 26 deletions
|
@ -1,4 +1,5 @@
|
|||
from libqtile import layout
|
||||
from libqtile.config import Match
|
||||
|
||||
from colors import colors
|
||||
|
||||
|
@ -40,18 +41,13 @@ layouts = [
|
|||
]
|
||||
|
||||
floatrules = [
|
||||
{'wmclass': 'confirm'},
|
||||
{'wmclass': 'download'},
|
||||
{'wmclass': 'error'},
|
||||
{'wmclass': 'file_progress'},
|
||||
{'wmclass': 'confirmreset'},
|
||||
{'wmclass': 'makebranch'},
|
||||
{'wmclass': 'maketag'},
|
||||
{'wmclass': 'ssh-askpass'},
|
||||
{'wname': 'branchdialog'},
|
||||
{'wname': 'pinentry-gtk-2'},
|
||||
{'wname': 'pinentry'},
|
||||
{'wname': 'win0'}
|
||||
*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(title="pinentry"), # GPG key password entry
|
||||
]
|
||||
|
||||
floating_layout = layout.Floating(float_rules = floatrules, border_width = 0)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue