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