Dots/qtile/modules/autostart.py
2022-08-24 21:04:18 +01:00

9 lines
No EOL
192 B
Python

import os
import subprocess
from libqtile import hook
@hook.subscribe.startup_once
def autostart():
home = os.path.expanduser('~/.config/qtile/autostart.sh')
subprocess.Popen([home])