summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.config/qtile/config.py29
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