-
Notifications
You must be signed in to change notification settings - Fork 186
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
autostart.sh doesn't work #48
Comments
hello, I'm using this configuration without any problem, you can validate that /bin/sh is installed or you can run your applications by adding ~/.xprofile to the file |
Can you share your |
in the official Qtile documentation this is the way to create an #!/bin/sh
# Your programs
# Example:
pidgin &
dropbox start & 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]) Try changing this code block in your @hook.subscribe.startup_once
def autostart():
subprocess.call([path.join(qtile_path, 'autostart.sh')]) to this @hook.subscribe.startup_once
def autostart():
home = os.path.expanduser('~/.config/qtile/autostart.sh')
subprocess.Popen([home]) |
also, i use chmod +x and it doesn't work
The text was updated successfully, but these errors were encountered: