Update Qtile

This commit is contained in:
The-Repo-Club 2023-09-10 16:37:02 +01:00
parent 12f5edc65a
commit 885c930bb5
No known key found for this signature in database
GPG Key ID: E30EC2FBFB05C44F
6 changed files with 8 additions and 8 deletions

Binary file not shown.

View File

@ -1,2 +1,2 @@
LastUsed=1694204730 LastUsed=1694211132
Message='Fully Updated' Message='Fully Updated'

View File

@ -10,9 +10,9 @@ bar = {
"background": palette.backgroundColor, "background": palette.backgroundColor,
"border_color": palette.backgroundColor, "border_color": palette.backgroundColor,
"border_width": 2, "border_width": 2,
"margin": 2, "margin": 5,
"opacity": 1, "opacity": 1,
"size": 18, "size": 24,
} }

View File

@ -71,7 +71,7 @@ def volume(bg, fg) -> list:
), ),
widget.Volume( widget.Volume(
**base(bg, fg), **base(bg, fg),
**powerline("arrow_right"), **powerline("arrow_left"),
check_mute_command="pamixer --get-mute", check_mute_command="pamixer --get-mute",
check_mute_string="true", check_mute_string="true",
get_volume_command="pamixer --get-volume-human", get_volume_command="pamixer --get-volume-human",
@ -141,7 +141,7 @@ def cpu(bg, fg) -> list:
), ),
widget.CPU( widget.CPU(
**base(bg, fg), **base(bg, fg),
**powerline("arrow_right"), **powerline("arrow_left"),
format="{load_percent:.0f}%", format="{load_percent:.0f}%",
), ),
] ]

View File

@ -8,7 +8,7 @@ layout_theme = {
"border_normal": palette.currentColor, "border_normal": palette.currentColor,
"border_width": 2, "border_width": 2,
"margin": 10, "margin": 10,
"single_border_width": 0, "single_border_width": 2,
"single_margin": 10, "single_margin": 10,
} }

View File

@ -8,12 +8,12 @@ screens = [
wallpaper=cfg.wallpaper, wallpaper=cfg.wallpaper,
wallpaper_mode="fill", wallpaper_mode="fill",
top=Bar(cfg.bar).create(), top=Bar(cfg.bar).create(),
bottom=Bar(cfg.bar2).create(), # bottom=Bar(cfg.bar2).create(),
), ),
Screen( Screen(
wallpaper=cfg.wallpaper, wallpaper=cfg.wallpaper,
wallpaper_mode="fill", wallpaper_mode="fill",
top=Bar(cfg.bar).create(), top=Bar(cfg.bar).create(),
bottom=Bar(cfg.bar2).create(), # bottom=Bar(cfg.bar2).create(),
), ),
] ]