From 35deb6f3b0b68605efbe0ccf2e37a0504fab0f2a Mon Sep 17 00:00:00 2001 From: ThanosApollo Date: Sun, 2 Oct 2022 17:49:13 +0300 Subject: Update widgets --- .config/qtile/config.py | 29 ++++++++++++++++++++++------- 1 file changed, 22 insertions(+), 7 deletions(-) (limited to '.config/qtile/config.py') diff --git a/.config/qtile/config.py b/.config/qtile/config.py index 506180b..199d043 100644 --- a/.config/qtile/config.py +++ b/.config/qtile/config.py @@ -121,20 +121,20 @@ def init_widgets_list(): foreground = my_colors["green"], background = my_colors["black"], ), + widget.Notify( + ), widget.Sep( linewidth = 1, padding = 10, foreground = my_colors["black2"], background = my_colors["black"] ), - widget.TextBox( - font="FontAwesome", - text= '|' + str(subprocess.check_output("uname -r", shell=True).strip()).replace('b','') + '|', - foreground=my_colors["blue"], - background=my_colors["black"], - padding = 0, - fontsize=14 + widget.Pomodoro( + font = 'sansmono', + fontsize = 17, + color_inactive = my_colors['blue'], + length_pomodori = 35, ), widget.Sep( linewidth = 1, @@ -142,6 +142,20 @@ def init_widgets_list(): foreground = my_colors["black2"], background = my_colors["black"] ), + # widget.TextBox( + # font="FontAwesome", + # text= '|' + str(subprocess.check_output("uname -r", shell=True).strip()).replace('b','') + '|', + # foreground=my_colors["blue"], + # background=my_colors["black"], + # padding = 0, + # fontsize=14 + # ), + # widget.Sep( + # linewidth = 1, + # padding = 10, + # foreground = my_colors["black2"], + # background = my_colors["black"] + # ), widget.Memory( measure_mem="G", fontsize=15, @@ -202,6 +216,7 @@ def init_widgets_list(): foreground = my_colors["black2"], background = my_colors["black"] ), + ] return widgets_list -- cgit v1.2.3