From 8b6dfa3a81d34901359052e66604f42cd136c8f8 Mon Sep 17 00:00:00 2001 From: The-Repo-Club Date: Mon, 7 Aug 2023 22:38:20 +0100 Subject: [PATCH] Update qtile --- package-list/.config/package-list | 1 + pkgbrowser/.config/pkgbrowser/pkgbrowser.conf | 2 +- qtile/.config/qtile/config.py | 8 ++++---- qtile/.config/qtile/widgets.py | 12 ++---------- 4 files changed, 8 insertions(+), 15 deletions(-) diff --git a/package-list/.config/package-list b/package-list/.config/package-list index 6d813bc86..528700aad 100644 --- a/package-list/.config/package-list +++ b/package-list/.config/package-list @@ -34,6 +34,7 @@ i3lock-color ideapad-cm imagewriter jetbrains-toolbox +jetbrains-toolbox lib32-libxft-bgra libart-lgpl libxft-bgra diff --git a/pkgbrowser/.config/pkgbrowser/pkgbrowser.conf b/pkgbrowser/.config/pkgbrowser/pkgbrowser.conf index e55db6749..ab2686bda 100644 --- a/pkgbrowser/.config/pkgbrowser/pkgbrowser.conf +++ b/pkgbrowser/.config/pkgbrowser/pkgbrowser.conf @@ -12,6 +12,6 @@ strings=bat, pkgbrowser, ly, zap, i3-gaps, microsoft edge, python3, python, pama [window] central-splitter=@ByteArray(\0\0\0\xff\0\0\0\x1\0\0\0\x2\0\0\x1\0\0\0\x1>\0\xff\xff\xff\xff\x1\0\0\0\x1\0) -geometry=@ByteArray(\x1\xd9\xd0\xcb\0\x3\0\0\0\0\0\a\0\0\0!\0\0\ax\0\0\x4\x16\0\0\0\x11\0\0\0+\0\0\an\0\0\x4\f\0\0\0\0\0\0\0\0\a\x80\0\0\0\x11\0\0\0+\0\0\an\0\0\x4\f) +geometry=@ByteArray(\x1\xd9\xd0\xcb\0\x3\0\0\0\0\0\x3\0\0\0%\0\0\ax\0\0\x4\xe\0\0\0\x5\0\0\0'\0\0\av\0\0\x4\f\0\0\0\0\0\0\0\0\a\x80\0\0\0\x5\0\0\0'\0\0\av\0\0\x4\f) left-splitter=@ByteArray(\0\0\0\xff\0\0\0\x1\0\0\0\x2\0\0\0\xc0\0\0\x1\f\0\xff\xff\xff\xff\x1\0\0\0\x2\0) right-splitter=@ByteArray(\0\0\0\xff\0\0\0\x1\0\0\0\x2\0\0\0\xc0\0\0\0\xee\0\xff\xff\xff\xff\x1\0\0\0\x2\0) diff --git a/qtile/.config/qtile/config.py b/qtile/.config/qtile/config.py index 7c149ac1c..ac0498029 100644 --- a/qtile/.config/qtile/config.py +++ b/qtile/.config/qtile/config.py @@ -300,7 +300,7 @@ screens = [ Widgets.sep, Widgets.currentLayout1, ], - 24, + 28, background=backgroundColor, margin=5, # border_width=[2, 2, 2, 2], # Draw top and bottom borders @@ -318,7 +318,7 @@ screens = [ Widgets.sep, Widgets.chords, ], - 24, + 28, background=backgroundColor, margin=5, # border_width=[2, 2, 2, 2], # Draw top and bottom borders @@ -352,7 +352,7 @@ screens = [ Widgets.sep, Widgets.currentLayout2, ], - 24, + 28, background=backgroundColor, margin=5, # border_width=[2, 2, 2, 2], # Draw top and bottom borders @@ -370,7 +370,7 @@ screens = [ Widgets.sep, Widgets.chords, ], - 24, + 28, background=backgroundColor, margin=5, # border_width=[2, 2, 2, 2], # Draw top and bottom borders diff --git a/qtile/.config/qtile/widgets.py b/qtile/.config/qtile/widgets.py index 233a73264..3e5162d59 100644 --- a/qtile/.config/qtile/widgets.py +++ b/qtile/.config/qtile/widgets.py @@ -40,8 +40,6 @@ class Widgets(object): ) groupBox1 = widget.GroupBox( - font="Hack Nerd Font", - fontsize=16, margin_y=4, margin_x=4, padding_y=6, @@ -67,8 +65,6 @@ class Widgets(object): ) groupBox2 = widget.GroupBox( - font="Hack Nerd Font", - fontsize=16, margin_y=4, margin_x=4, padding_y=6, @@ -94,7 +90,6 @@ class Widgets(object): ) windowName1 = widget.WindowName( - font="Hack Nerd Font", foreground=backgroundColor, background=colorScheme[10], max_chars=42, @@ -102,7 +97,6 @@ class Widgets(object): ) windowName2 = widget.WindowName( - font="Hack Nerd Font", foreground=backgroundColor, background=colorScheme[10], max_chars=42, @@ -141,7 +135,6 @@ class Widgets(object): foreground=colorScheme[6], format='%d %B %Y', padding=10, - font="Hack Nerd Font", ) time = widget.Clock( @@ -149,7 +142,6 @@ class Widgets(object): foreground=colorScheme[6], format='%I:%M %p', padding=10, - font="Hack Nerd Font", ) tray = widget.Systray( @@ -191,8 +183,8 @@ class Widgets(object): colour_have_updates=colorScheme[2], colour_no_updates=colorScheme[1], padding=10, - distro='Arch_paru', - no_update_string='No Updates!', + distro='Arch_yay', + no_update_string='Fully Updated!', mouse_callbacks={ 'Button1': lazy.spawn('pkgbrowser'), },