summaryrefslogtreecommitdiff
path: root/skel/.config/qtile/config.py
diff options
context:
space:
mode:
Diffstat (limited to 'skel/.config/qtile/config.py')
-rw-r--r--skel/.config/qtile/config.py26
1 files changed, 12 insertions, 14 deletions
diff --git a/skel/.config/qtile/config.py b/skel/.config/qtile/config.py
index f1d1166..4b4fdd6 100644
--- a/skel/.config/qtile/config.py
+++ b/skel/.config/qtile/config.py
@@ -192,17 +192,15 @@ def init_widgets_list(monitor_num):
fontsize = 14,
margin_y = 2,
margin_x = 4,
- padding_y = 6,
- padding_x = 6,
+ padding_y = 5,
+ padding_x = 5,
borderwidth = 2,
disable_drag = True,
- active = colors[3],
+ active = colors[9],
inactive = foregroundColor,
hide_unused = False,
- rounded = False,
- highlight_method = "line",
- highlight_color = [backgroundColor, backgroundColor],
- this_current_screen_border = colors[5],
+ rounded = True,
+ this_current_screen_border = colors[9],
this_screen_border = colors[7],
other_screen_border = colors[6],
other_current_screen_border = colors[6],
@@ -221,7 +219,7 @@ def init_widgets_list(monitor_num):
borderwidth = 0,
border = colors[9],
margin = 0,
- padding = 8,
+ padding = 10,
highlight_method = "block",
title_width_method = "uniform",
urgent_alert_method = "border",
@@ -233,27 +231,27 @@ def init_widgets_list(monitor_num):
),
widget.CurrentLayoutIcon(scale = 0.5, foreground = colors[9], background = colors[9]),
widget.Sep(linewidth = 0, padding = 10),
- widget.Systray(background = backgroundColor, icon_size = 20, padding = 5),
+ widget.Systray(background = backgroundColor, icon_size = 20, padding = 10),
widget.Sep(linewidth = 0, padding = 10),
- widget.TextBox(text = "CPU ", fontsize = 10, font = "Noto Sans", foreground = colors[7]),
+ widget.TextBox(text = "CPU ", fontsize = 10, font = "Noto Sans", foreground = colors[0]),
widget.CPU(
font = "Noto Sans",
update_interval = 1.0,
format = '{freq_current}Ghz / {load_percent}%',
foreground = foregroundColor,
- padding = 5
+ padding = 1
),
widget.Sep(linewidth = 0, padding = 10),
- widget.TextBox(text = "RAM", fontsize = 10, font = "Noto Sans", foreground = colors[7]),
+ widget.TextBox(text = "RAM", fontsize = 10, font = "Noto Sans", foreground = colors[0]),
widget.Memory(
font = "Noto Sans",
foreground = foregroundColor,
format = '{MemUsed: .0f}{mm} /{MemTotal: .0f}{mm}',
measure_mem='G',
- padding = 5,
+ padding = 1,
),
widget.Sep(linewidth = 0, padding = 10),
- widget.Clock(format='%I:%M %p', font = "Noto Sans", padding = 10, foreground = foregroundColor),
+ widget.Clock(format='%I:%M %p', font = "Noto Sans", padding = 10, foreground = colors[0]),
]
return widgets_list