mirror of
https://github.com/starr-dusT/dotfiles.git
synced 2025-02-19 19:27:31 -08:00
13 lines
328 B
Python
13 lines
328 B
Python
from libqtile.config import Screen
|
|
from libqtile import bar, widget
|
|
from settings.widgets import primary_widgets
|
|
|
|
# Define the screens (and bars)
|
|
screens = [
|
|
Screen(top=bar.Bar(widgets=primary_widgets, size=20)),
|
|
Screen(top=bar.Bar([
|
|
widget.GroupBox(),
|
|
widget.WindowName()
|
|
], 20),)
|
|
]
|