mirror of
https://github.com/sahinakkaya/dotfiles.git
synced 2024-12-23 15:49:40 +01:00
10 lines
172 B
Python
10 lines
172 B
Python
|
import os
|
||
|
import subprocess
|
||
|
|
||
|
from libqtile import hook
|
||
|
|
||
|
|
||
|
@hook.subscribe.startup
|
||
|
def autostart():
|
||
|
subprocess.call([os.path.expanduser('~/.config/qtile/autostart.sh')])
|