13 lines
328 B
Python
Raw Normal View History

2021-01-23 16:10:15 -08:00
from libqtile.config import Screen
2021-10-15 09:15:30 -07:00
from libqtile import bar, widget
2021-01-23 16:10:15 -08:00
from settings.widgets import primary_widgets
# Define the screens (and bars)
screens = [
2021-10-15 09:15:30 -07:00
Screen(top=bar.Bar(widgets=primary_widgets, size=20)),
Screen(top=bar.Bar([
widget.GroupBox(),
widget.WindowName()
], 20),)
2021-01-23 16:10:15 -08:00
]