Python
自動啟動腳本在 Manjaro 上的 Qtile 中不起作用
我在 Manjaro 上安裝了 Qtile,並在
config.py
我將其設置為 run and autostart scriptautostart.sh
。但是,當我啟動 Qtile 時它沒有執行,我沒有收到任何錯誤或任何東西。每次啟動 Qtile 時,我都必須手動執行腳本。這就是我的
config.py
:from libqtile import hook import os import subprocess @hook.subscribe.startup_once def autostart(): home = os.path.expanduser('~/.config/qtile/autostart.sh') subprocess.call([home])
這就是我的
autostart.sh
#!/bin/bash xrandr --output HDMI1 --left-of eDP1 & nitrogen --restore & picom -f &
你有
chmod +x autostart.sh
嗎?