split configuration into multiple files

This commit is contained in:
paul-loedige
2021-02-01 01:38:51 +01:00
parent 3472048542
commit 688e0aad7b
9 changed files with 627 additions and 612 deletions
+9
View File
@@ -0,0 +1,9 @@
from libqtile.config import Screen
from Bars import top_bar, left_bar, main_bar
screens = [
Screen(bottom=top_bar),
Screen(top=left_bar),
Screen(top=main_bar),
]