diff options
author | ThanosApollo <[email protected]> | 2022-10-02 17:49:13 +0300 |
---|---|---|
committer | ThanosApollo <[email protected]> | 2022-10-02 17:49:13 +0300 |
commit | 35deb6f3b0b68605efbe0ccf2e37a0504fab0f2a (patch) | |
tree | e0171c3081ce8720c58be745be4e4cce96140d32 /.config/qtile | |
parent | 0ff5edebb721068e6d4ad5b562dc7694140b5684 (diff) |
Update widgets
Diffstat (limited to '.config/qtile')
-rw-r--r-- | .config/qtile/config.py | 29 |
1 files changed, 22 insertions, 7 deletions
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 |