summaryrefslogtreecommitdiff
path: root/.config/qtile/config.py
diff options
context:
space:
mode:
authorThanosApollo <[email protected]>2022-10-21 04:08:27 +0300
committerThanosApollo <[email protected]>2022-10-21 04:08:27 +0300
commit7dc86dd96bae51fb9514473ee11b4dc457335ecc (patch)
tree5e3c22188cc5b84ce66f1922b91d56f7d15b2ff9 /.config/qtile/config.py
parent60fe0cb552beed0b056f4a6a8a5c2811083d624b (diff)
redo widgets
Diffstat (limited to '.config/qtile/config.py')
-rw-r--r--.config/qtile/config.py34
1 files changed, 25 insertions, 9 deletions
diff --git a/.config/qtile/config.py b/.config/qtile/config.py
index 5d62a1d..60520fd 100644
--- a/.config/qtile/config.py
+++ b/.config/qtile/config.py
@@ -131,8 +131,9 @@ def init_widgets_list():
# padding = 0,
# fontsize=14
# ),
- widget.Spacer(
- length=5
+ widget.Image(
+ filename = "~/.config/qtile/spotify2.png",
+ scale = True,
),
Spotify(
fontsize = 12,
@@ -141,12 +142,24 @@ def init_widgets_list():
fmt = '{}',
font = "JetBrains Mono Bold"
),
+ widget.Spacer(
+ length=7
+ ),
+ widget.Image(
+ filename = "~/.config/qtile/volume1.png",
+ scale = True,
+ ),
+ widget.Spacer(
+ length=7,
+ padding = 10
+ ),
widget.Volume(
- fontsize = 13,
- fmt = '|{}| ' ,
+ fontsize = 15,
+ fmt = '{} ' ,
background = dracula["bg"],
- foreground = dracula['purple'],
- font = "JetBrains Mono"
+ foreground = dracula['orange'],
+ font = "JetBrains Mono",
+ margin = 10
),
# widget.Mpris2(
# fontsize= 16,
@@ -200,14 +213,17 @@ def init_widgets_list():
format="%d-%m-%Y | %H:%M"
),
widget.Spacer(
- length=5
+ length=6
),
widget.Systray(
background= dracula["bg"],
icon_size=21,
- padding = 10
+ padding = 10,
+ margin = 10,
+ ),
+ widget.Spacer(
+ length=5
),
-
]
return widgets_list