diff options
Diffstat (limited to '.config/qtile')
-rw-r--r-- | .config/qtile/config.py | 23 |
1 files changed, 10 insertions, 13 deletions
diff --git a/.config/qtile/config.py b/.config/qtile/config.py index af9d68f..83247b3 100644 --- a/.config/qtile/config.py +++ b/.config/qtile/config.py @@ -30,10 +30,7 @@ import os -import re -import socket import subprocess -from typing import List from libqtile import layout, bar, widget, hook from libqtile.config import Click, Drag, Group, Key, Match, Screen, Rule from libqtile.command import lazy @@ -356,15 +353,15 @@ def init_widgets_list(): foreground = colors[8], background = colors[1], ), - widget.Sep( - linewidth = 1, - padding = 10, - foreground = colors[2], - background = colors[1] - ), - widget.Net( - format='{interface}: U {up} D {down} T {total}' - ), + # widget.Sep( + # linewidth = 1, + # padding = 10, + # foreground = colors[2], + # background = colors[1] + # ), + # widget.Net( + # format='{interface}: U {up} D {down} T {total}' + # ), widget.Sep( linewidth = 1, padding = 10, @@ -403,7 +400,7 @@ def init_widgets_list(): widget.TextBox( font="FontAwesome", text=" ", - foreground=colors[4], + foreground=colors[5], background=colors[1], padding = 0, fontsize=18 |