mirror of
https://github.com/Fluffy-Bean/dots.git
synced 2025-05-19 09:54:58 +00:00
9 lines
No EOL
192 B
Python
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]) |