summaryrefslogtreecommitdiffstats
path: root/.config
diff options
context:
space:
mode:
authorjdlugosz963 <jdlugosz963@gmail.com>2022-07-27 10:21:31 +0200
committerjdlugosz963 <jdlugosz963@gmail.com>2022-07-27 10:21:31 +0200
commite317f2db74fa024b58c2c0d4bc0e1df0f489c290 (patch)
treec2993cee49292a6f9caba7f2060dffd27217b347 /.config
parenta85a918840c4403882cc0fe0d013008722d8fc65 (diff)
downloaddotfiles-e317f2db74fa024b58c2c0d4bc0e1df0f489c290.tar.gz
dotfiles-e317f2db74fa024b58c2c0d4bc0e1df0f489c290.zip
Add systray widget to my qtile config
Diffstat (limited to '.config')
-rw-r--r--.config/qtile/config.org4
-rw-r--r--.config/qtile/config.py4
2 files changed, 6 insertions, 2 deletions
diff --git a/.config/qtile/config.org b/.config/qtile/config.org
index 54892f6..be587dc 100644
--- a/.config/qtile/config.org
+++ b/.config/qtile/config.org
@@ -250,7 +250,9 @@ screens = [
250 widget.Sep(**soft_sep), 250 widget.Sep(**soft_sep),
251 widget.Clock(format='📅 %B %-d, %H:%M', foreground=CYAN), 251 widget.Clock(format='📅 %B %-d, %H:%M', foreground=CYAN),
252 widget.Sep(**soft_sep), 252 widget.Sep(**soft_sep),
253 widget.CurrentScreen() 253 widget.CurrentScreen(),
254 widget.Sep(**soft_sep),
255 widget.Systray()
254 ], 256 ],
255 24, 257 24,
256 margin=8, 258 margin=8,
diff --git a/.config/qtile/config.py b/.config/qtile/config.py
index 0cdd232..abd9549 100644
--- a/.config/qtile/config.py
+++ b/.config/qtile/config.py
@@ -191,7 +191,9 @@ screens = [
191 widget.Sep(**soft_sep), 191 widget.Sep(**soft_sep),
192 widget.Clock(format='📅 %B %-d, %H:%M', foreground=CYAN), 192 widget.Clock(format='📅 %B %-d, %H:%M', foreground=CYAN),
193 widget.Sep(**soft_sep), 193 widget.Sep(**soft_sep),
194 widget.CurrentScreen() 194 widget.CurrentScreen(),
195 widget.Sep(**soft_sep),
196 widget.Systray()
195 ], 197 ],
196 24, 198 24,
197 margin=8, 199 margin=8,