change autostart script path in qtile config

This commit is contained in:
Guilherme Rugai Freire 2021-06-03 23:36:04 -03:00
parent 55cd0fb16c
commit d9cf870597
No known key found for this signature in database
GPG Key ID: 86DC96AE4AEBC162

View File

@ -353,8 +353,8 @@ auto_minimize = True
@hook.subscribe.startup_once
def autostart():
home = os.path.expanduser("~/.config/qtile/autostart.sh")
subprocess.call([home])
autostart_script = os.path.expanduser("~/.config/qtile/autostart.sh")
subprocess.call([autostart_script])
@hook.subscribe.client_new