file get_updated

This commit is contained in:
2026-06-12 08:05:48 +02:00
parent 84f901a083
commit 71b8cf5ceb
66 changed files with 2916 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
import os
import subprocess
from libqtile import hook, qtile
# Startup applications
@hook.subscribe.startup_once
def autostart():
if qtile.core.name == "x11":
autostartscript = "~/.config/qtile/scripts/x11-autostart.sh"
elif qtile.core.name == "wayland":
autostartscript = "~/.config/qtile/scripts/wayland-autostart.sh"
home = os.path.expanduser(autostartscript)
subprocess.Popen([home])