diff --git a/qtile/config.py b/qtile/config.py index 64e84bc..456d70b 100644 --- a/qtile/config.py +++ b/qtile/config.py @@ -179,8 +179,8 @@ layout_defaults = { } layouts = [ - layout.Columns(border_focus_stack=["#3333cc", "#3366ff"], **layout_defaults), - layout.Max(), + layout.Columns(border_focus_stack=["#ff33cc", "#cc33ff"], **layout_defaults), + layout.Max(**layout_defaults), # Try more layouts by unleashing below layouts. layout.Stack(num_stacks=1, **layout_defaults), # layout.Bsp(), @@ -287,6 +287,7 @@ screens = [ widget.ThermalSensor(tag_sensor='Package id 0', format='CPU: {temp}{unit}', threshold=85), widget.NvidiaSensors(threshold=85, format='GPU: {temp}°C'), widget.Wttr(location={'Adelaide, Australia':"Home"}), + # widget.Bluetooth(), widget.Systray(), widget.Clock(format="%a %d %b %Y %I:%M %p"), # widget.Wallpaper(directory='/home/shared/Pictures/wallpapers/', random_selection=True, label="🖼️"), @@ -379,6 +380,7 @@ floating_layout = layout.Floating( Match(wm_class="xpad"), Match(wm_class="gnome-calculator"), Match(wm_class="blueman-manager"), + Match(wm_class="pavucontrol"), ] ) auto_fullscreen = True