From 885c930bb5514371fae124c92132c5f02928cb94 Mon Sep 17 00:00:00 2001 From: The-Repo-Club Date: Sun, 10 Sep 2023 16:37:02 +0100 Subject: [PATCH] Update Qtile --- dconf/.config/dconf/user | Bin 8630 -> 8630 bytes .../flexiflow/flexiflow_bar/bar_updates.ini | 2 +- qtile/.config/qtile/core/bar/bottom.py | 4 ++-- qtile/.config/qtile/core/bar/shapes.py | 4 ++-- qtile/.config/qtile/core/layouts.py | 2 +- qtile/.config/qtile/core/screens.py | 4 ++-- 6 files changed, 8 insertions(+), 8 deletions(-) diff --git a/dconf/.config/dconf/user b/dconf/.config/dconf/user index de3648d90311b783349567b86504991c6cd563cc..5a82136d4d95021c30b2d5f22264d390ce1afc29 100644 GIT binary patch delta 18 Zcmdnyyv=!ogE*@Z69a?NW>@h-E&w-Q1m6Gv delta 18 Zcmdnyyv=!ogE*@$69a?zW>@h-E&w*`1kV5f diff --git a/flexiflow/.config/flexiflow/flexiflow_bar/bar_updates.ini b/flexiflow/.config/flexiflow/flexiflow_bar/bar_updates.ini index dc1a3caa8..5be564a83 100644 --- a/flexiflow/.config/flexiflow/flexiflow_bar/bar_updates.ini +++ b/flexiflow/.config/flexiflow/flexiflow_bar/bar_updates.ini @@ -1,2 +1,2 @@ -LastUsed=1694204730 +LastUsed=1694211132 Message='Fully Updated' diff --git a/qtile/.config/qtile/core/bar/bottom.py b/qtile/.config/qtile/core/bar/bottom.py index ee3986d22..78800965d 100644 --- a/qtile/.config/qtile/core/bar/bottom.py +++ b/qtile/.config/qtile/core/bar/bottom.py @@ -10,9 +10,9 @@ bar = { "background": palette.backgroundColor, "border_color": palette.backgroundColor, "border_width": 2, - "margin": 2, + "margin": 5, "opacity": 1, - "size": 18, + "size": 24, } diff --git a/qtile/.config/qtile/core/bar/shapes.py b/qtile/.config/qtile/core/bar/shapes.py index 6e6108807..5ed9677e1 100644 --- a/qtile/.config/qtile/core/bar/shapes.py +++ b/qtile/.config/qtile/core/bar/shapes.py @@ -71,7 +71,7 @@ def volume(bg, fg) -> list: ), widget.Volume( **base(bg, fg), - **powerline("arrow_right"), + **powerline("arrow_left"), check_mute_command="pamixer --get-mute", check_mute_string="true", get_volume_command="pamixer --get-volume-human", @@ -141,7 +141,7 @@ def cpu(bg, fg) -> list: ), widget.CPU( **base(bg, fg), - **powerline("arrow_right"), + **powerline("arrow_left"), format="{load_percent:.0f}%", ), ] diff --git a/qtile/.config/qtile/core/layouts.py b/qtile/.config/qtile/core/layouts.py index 72d001bb2..c07daeb24 100644 --- a/qtile/.config/qtile/core/layouts.py +++ b/qtile/.config/qtile/core/layouts.py @@ -8,7 +8,7 @@ layout_theme = { "border_normal": palette.currentColor, "border_width": 2, "margin": 10, - "single_border_width": 0, + "single_border_width": 2, "single_margin": 10, } diff --git a/qtile/.config/qtile/core/screens.py b/qtile/.config/qtile/core/screens.py index 9b5b07484..da38511c2 100644 --- a/qtile/.config/qtile/core/screens.py +++ b/qtile/.config/qtile/core/screens.py @@ -8,12 +8,12 @@ screens = [ wallpaper=cfg.wallpaper, wallpaper_mode="fill", top=Bar(cfg.bar).create(), - bottom=Bar(cfg.bar2).create(), + # bottom=Bar(cfg.bar2).create(), ), Screen( wallpaper=cfg.wallpaper, wallpaper_mode="fill", top=Bar(cfg.bar).create(), - bottom=Bar(cfg.bar2).create(), + # bottom=Bar(cfg.bar2).create(), ), ]