ManjaroにQtileをインストールし、config.py
スクリプトから実行と自動起動に設定しました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 &
答え1
以下を実行する必要があります。chmod +x autostart.sh