From c96bef61cfcc70ca1601610c16d21b32ecbad98b Mon Sep 17 00:00:00 2001 From: 0x29a Date: Sun, 13 Jul 2025 16:12:35 +0200 Subject: [PATCH] add status try --- config.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/config.py b/config.py index 5bb33c9..214fb12 100644 --- a/config.py +++ b/config.py @@ -27,7 +27,7 @@ keys = [ Key([mod, "shift"], "Return",lazy.layout.toggle_split(),desc="Toggle between split and unsplit sides of stack",), Key([mod], "Return", lazy.spawn(terminal), desc="Launch terminal"), Key([mod], "Tab", lazy.next_layout(), desc="Toggle between layouts"), - Key([mod, "shift"], "q", lazy.window.kill(), desc="Kill focused window"), + Key([mod], "q", lazy.window.kill(), desc="Kill focused window"), Key([mod], "f", lazy.window.toggle_fullscreen(), desc="Toggle fullscreen on the focused window",), Key([mod], "t", lazy.window.toggle_floating(), desc="Toggle floating on the focused window"), Key([mod, "control"], "r", lazy.reload_config(), desc="Reload the config"), @@ -99,8 +99,8 @@ screens = [ # top bar top=bar.Bar( [ - widget.CurrentLayoutIcon(background="000000", padding=10), - widget.GroupBox(background="111111", **powerline), + widget.CurrentLayoutIcon(background="111111", **powerline), + widget.GroupBox(background="111111", highlight_method='line', hide_unused=True, **powerline), widget.WindowName(background="000000", **powerline), widget.Wlan(background="333333", format=" {ipaddr} {essid} {percent:2.0%}", interface="wlp0s20f3", **powerline), widget.Volume(background="111111", fmt=" {}", **powerline), @@ -108,8 +108,9 @@ screens = [ widget.Clock(background="333333", format="󰃭 %a", **powerline), widget.Clock(background="444444", format=" %H:%M:%S", **powerline), widget.QuickExit(background="666666", default_text=" 󰐥 ", countdown_format=" {} ", **powerline), + widget.StatusNotifier(background="000000", **powerline), ], - 24, + 25, ), ), ]