aboutsummaryrefslogtreecommitdiffstats
path: root/.config/qtile/screens.py
diff options
context:
space:
mode:
authorVidhu Kant Sharma <vidhukant@vidhukant.com>2025-05-27 00:58:16 +0530
committerVidhu Kant Sharma <vidhukant@vidhukant.com>2025-05-27 00:58:16 +0530
commit937c508691d16e6ce6da622b5cd372b99a490742 (patch)
treea93f4101960523cfbaed2aaff11d6fd9ea79b814 /.config/qtile/screens.py
parentc0faee8f762f2bdf2d220befc76608daa7582883 (diff)
cleaned up config
Diffstat (limited to '.config/qtile/screens.py')
-rw-r--r--.config/qtile/screens.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/.config/qtile/screens.py b/.config/qtile/screens.py
new file mode 100644
index 0000000..fb402a1
--- /dev/null
+++ b/.config/qtile/screens.py
@@ -0,0 +1,9 @@
+from libqtile.config import Screen
+
+import bars
+
+default_screen = Screen(
+ top=bars.default_bar(),
+)
+
+screens = [default_screen]