diff --git a/qtile/.config/qtile/config.py b/qtile/.config/qtile/config.py index 7e1ca71..0505ee0 100644 --- a/qtile/.config/qtile/config.py +++ b/qtile/.config/qtile/config.py @@ -87,7 +87,7 @@ def createBar(monitor=None): widget.Spacer(10), widget.CPUGraph(border_color=theme["inactive"], graph_color=theme["foreground"]), widget.Spacer(10), - widget.ThermalSensor(foreground=theme["foreground"], fontsize=s["fontsize"]), + widget.ThermalSensor(fontsize=s["fontsize"]), ]), widget.Spacer(10), widget.PulseVolume(fontsize=s["fontsize"]), diff --git a/qtile/.config/qtile/themes.py b/qtile/.config/qtile/themes.py index b65cabc..5579f9b 100644 --- a/qtile/.config/qtile/themes.py +++ b/qtile/.config/qtile/themes.py @@ -26,7 +26,6 @@ def light_dark(light, dark): @lazy.function def toggle_theme(qtile): write_theme(light_dark("dark", "light")) - theme = get_theme() qtile.restart() background = light_dark([colors["sky"][600], colors["sky"][700]], @@ -39,8 +38,8 @@ def get_theme(): root_background=light_dark(colors["blue-gray"][300], colors["blue-gray"][800]), background=background, foreground=light_dark(colors["blue-gray"][100], colors["blue-gray"][400]), - inactive=light_dark(colors["blue-gray"][400], colors["blue-gray"][500]), - this_current_screen_border=light_dark(colors["blue-gray"][100], colors["blue-gray"][400]), + inactive=light_dark(colors["sky"][100], colors["blue-gray"][500]), + this_current_screen_border=light_dark(colors["sky"][400], colors["indigo"][400]), this_screen_border=light_dark(colors["blue-gray"][400], colors["blue-gray"][500]), other_current_screen_border=background, other_screen_border=background,