mirror of
https://github.com/starr-dusT/dotfiles.git
synced 2025-02-19 19:27:31 -08:00
10 lines
233 B
Python
10 lines
233 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(),
|
|
Screen(top=bar.Bar(widgets=primary_widgets, size=20)),
|
|
]
|