25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
436 B

  1. -- xdg autostart specification
  2. awful.spawn.with_shell(
  3. 'if (xrdb -query | grep -q "^awesome\\.started:\\s*true$"); then exit; fi;' ..
  4. 'xrdb -merge <<< "awesome.started:true";' ..
  5. -- list each of your autostart commands, followed by ; inside single quotes, followed by ..
  6. 'dex --environment Awesome --autostart --search-paths "$XDG_CONFIG_DIRS/autostart:$XDG_CONFIG_HOME/autostart"' -- https://github.com/jceb/dex
  7. )