Python

自動啟動腳本在 Manjaro 上的 Qtile 中不起作用

  • November 26, 2021

我在 Manjaro 上安裝了 Qtile,並在config.py我將其設置為 run and autostart script autostart.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嗎?

引用自:https://unix.stackexchange.com/questions/676913