Skip to content

Commit

Permalink
feat(qtile): add borders for floating windows
Browse files Browse the repository at this point in the history
  • Loading branch information
KirkEasterson committed Sep 12, 2024
1 parent 40a3beb commit 230b110
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion qtile/.config/qtile/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -185,6 +185,9 @@ def autostart_once():
floats_kept_above = True
cursor_warp = False
floating_layout = layout.Floating(
border_focus="#fabd2f",
border_normal="#1d2021",
border_width=4,
float_rules=[
# Run the utility of `xprop` to see the wm class and name of an X client.
*layout.Floating.default_float_rules,
Expand All @@ -194,7 +197,7 @@ def autostart_once():
Match(wm_class="ssh-askpass"), # ssh-askpass
Match(title="branchdialog"), # gitk
Match(title="pinentry"), # GPG key password entry
]
],
)
auto_fullscreen = True
focus_on_window_activation = "smart"
Expand Down

0 comments on commit 230b110

Please sign in to comment.