aboutsummaryrefslogtreecommitdiffstats
path: root/.config/qtile/screens.py
blob: 568399f6cd9f438ac36e9c2e1f4d82f4d259b114 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
from libqtile.config import Screen

import bars

default_screen = Screen(
    top=bars.default_bar(),
)

monitor = Screen(
    top=bars.default_bar(),
)

screens = [default_screen, monitor]