自動実行 XDG Autostart 仕様を実装するには、xorg-xrdb と dex をインストールし、次の行を ~/.config/awesome/rc.luaに追加します: ~/.config/awesome/rc.lua awful.spawn.with_shell( 'if (xrdb -query | grep -q "^awesome\\.started:\\s*true$"); then exit; fi;' .. 'xrdb -merge <<< "awesome.started:true";' .. -- list each of your autostart commands, followed by ; inside single quotes, followed by .. 'dex --environment Awesome --autostart' ) ある