diff options
author | Thanos Apollo <[email protected]> | 2022-10-07 17:29:48 +0300 |
---|---|---|
committer | Thanos Apollo <[email protected]> | 2022-10-07 17:29:48 +0300 |
commit | c0ce006a7d8fc09280348cbe1846f434cc747105 (patch) | |
tree | 314a415029c54f339b2fb577199b2d96814e7364 /.config/qtile | |
parent | 6a0a514b1f4f2bf39781ff635ea1785d802d9188 (diff) | |
parent | 8aa58682905a329ab919c725473d3f37ae536287 (diff) |
Merge branch 'master' of github.com:ThanosApollo/config
Diffstat (limited to '.config/qtile')
-rw-r--r-- | .config/qtile/config.py | 40 |
1 files changed, 22 insertions, 18 deletions
diff --git a/.config/qtile/config.py b/.config/qtile/config.py index d61aa70..5dcbeb0 100644 --- a/.config/qtile/config.py +++ b/.config/qtile/config.py @@ -122,31 +122,30 @@ def init_widgets_list(): foreground = my_colors["green"], background = my_colors["black"], ), - widget.Notify( - font = "sansmono", - fontsize = "14", - - ), - # widget.Pomodoro( + #widget.Notify( + # font = "sansmono", + # fontsize = "14", + # ), + #widget.Pomodoro( # font = 'sansmono', # fontsize = 17, # color_inactive = my_colors['blue'], # length_pomodori = 35, # ), - # widget.Sep( + #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["grey2"], - background=my_colors["black"], - padding = 0, - fontsize=14 - ), + # widget.TextBox( + # font="FontAwesome", + # text= '|' + str(subprocess.check_output("uname -r", shell=True).strip()).replace('b','') + '|', + # foreground=my_colors["grey2"], + # background=my_colors["black"], + # padding = 0, + # fontsize=14 + # ), widget.Sep( linewidth = 1, padding = 10, @@ -154,12 +153,17 @@ def init_widgets_list(): background = my_colors["black"] ), widget.Volume( - font = 'sansmono', fontsize = 15, - fmt = 'Vol: {}', - foreground = my_colors['cyan'], + fmt = '| {} |', + foreground = my_colors['blue'], ), + widget.Moc( + fontsize = 15, + noplay_color = my_colors["white"], + play_color = my_colors["blue"], + fmt = '{} |', + ), widget.Sep( linewidth = 1, padding = 10, |