Autostart
From awesome
| Languages: |
English • Русский |
Awesome does not provide autostart functionality; not in the sense of freedesktop autostart specification and using *.desktop files. Below are some solutions for you to consider.
Contents |
[edit] Traditional way
The xinit program is used to start the X server and clients on systems that don't have, or use, a display login manager like GDM/KDM/XDM. When xinit is run without specific client options it looks for a file called .xinitrc in the user's home directory and runs it as a shell script. This configuration file/script is used to start up client programs.
You can run any application from your ~/.xinitrc file but keep in mind that programs which do not return or exit right way you need to send to the background, so they don't block other programs from starting. Only the last started program, your window manager (awesome in this case), should be left in the foreground so the script doesn't exit until you quit awesome, and so xinit can clean up after it.
If you are used to start the X server with the startx command, and by now wondering how this will affect you, do not worry the startx command is only a front-end to xinit, and your ~/.xinitrc file will also be executed. Very simple .xinitrc file as an example:
#!/bin/sh
#
# User's .xinitrc file
# Merge custom X resources
xrdb -merge "${HOME}/.Xresources"
# Play a startup sound, in the background
ogg123 -q "${HOME}/.config/awesome/login.ogg" &
# Start a terminal emulator in the background
urxvt -T Terminal &
# Start the window manager
exec awesome
Here is a good example of a more complex .xinitrc file you can learn from: http://git.sysphere.org/dotfiles/tree/xinitrc
[edit] Simple way
Just add lines to end of your ~/.config/awesome/rc.lua:
awful.util.spawn_with_shell("COMMAND1")
awful.util.spawn_with_shell("COMMAND2")
...and so on
My Example:
awful.util.spawn_with_shell("kdeinit")
awful.util.spawn_with_shell("lineakd")
awful.util.spawn_with_shell("anyremote -f ~/.anyRemote/amarok.cfg")
awful.util.spawn_with_shell("~/scripts/trm")
awful.util.spawn_with_shell("xchat")
awful.util.spawn_with_shell("psi")
awful.util.spawn_with_shell("firefox-bin")
awful.util.spawn_with_shell("gvim +Project")
awful.util.spawn_with_shell("kchmviewer")
awful.util.spawn_with_shell("amarok")
awful.util.spawn_with_shell("kmix")
awful.util.spawn_with_shell("kbluetoothd")
awful.util.spawn_with_shell("sudo killall mplayer")
If you want to run your apps only once and not every time awesome is restarted, create this simple script:
#! /bin/bash # Run program unless it's already running. if [ ! "`ps -A | grep $1`" ]; then $@; fi
Save it as "run_once" somewhere in your $PATH and make it executable. Then autostart your apps like this:
awful.util.spawn_with_shell("run_once amarok")
Alternatively you can use the following to avoid an external script (this also ignore commands running as other users than yourself):
function run_once(prg)
if not prg then
do return nil end
end
awful.util.spawn_with_shell("pgrep -u $USER -x " .. prg .. " || (" .. prg .. ")")
end
run_once("amarok")
[edit] Directory way
-- Autostart
function autostart(dir)
if not dir then
do return nil end
end
local fd = io.popen("ls -1 -F " .. dir)
if not fd then
do return nil end
end
for file in fd:lines() do
local c= string.sub(file,-1) -- last char
if c=='*' then -- executables
executable = string.sub( file, 1,-2 )
print("Awesome Autostart: Executing: " .. executable)
awful.util.spawn_with_shell(dir .. "/" .. executable .. "") -- launch in bg
elseif c=='@' then -- symbolic links
print("Awesome Autostart: Not handling symbolic links: " .. file)
else
print ("Awesome Autostart: Skipping file " .. file .. " not executable.")
end
end
io.close(fd)
end
autostart_dir = os.getenv("HOME") .. "/.config/autostart"
autostart(autostart_dir)
Be aware of the following drawbacks (and maybe fix them):
- the files in the autostart directory will be run everytime you re-parse the config file. If you re-parse the config file multiple times during a session this might cause strange behavior. If an application should only be run once, please handle this in the corresponding autostart script.
- The function currently ignores symlinks (I do not need them).
[edit] PID way
Put this in runonce.lua
-- @author Peter J. Kranz (Absurd-Mind, peter@myref.net)
-- Any questions, criticism or praise just drop me an email
local M = {}
-- get the current Pid of awesome
local function getCurrentPid()
-- get awesome pid from pgrep
local fpid = io.popen("pgrep -u " .. os.getenv("USER") .. " -o awesome")
local pid = fpid:read("*n")
fpid:close()
-- sanity check
if pid == nil then
return -1
end
return pid
end
local function getOldPid(filename)
-- open file
local pidFile = io.open(filename)
if pidFile == nil then
return -1
end
-- read number
local pid = pidFile:read("*n")
pidFile:close()
-- sanity check
if pid <= 0 then
return -1
end
return pid;
end
local function writePid(filename, pid)
local pidFile = io.open(filename, "w+")
pidFile:write(pid)
pidFile:close()
end
local function shallExecute(oldPid, newPid)
-- simple check if equivalent
if oldPid == newPid then
return false
end
return true
end
local function getPidFile()
local host = io.lines("/proc/sys/kernel/hostname")()
return awful.util.getdir("cache") .. "/awesome." .. host .. ".pid"
end
-- run Once per real awesome start (config reload works)
-- does not cover "pkill awesome && awesome"
function M.run(shellCommand)
-- check and Execute
if shallExecute(M.oldPid, M.currentPid) then
awful.util.spawn_with_shell(shellCommand)
end
end
M.pidFile = getPidFile()
M.oldPid = getOldPid(M.pidFile)
M.currentPid = getCurrentPid()
writePid(M.pidFile, M.currentPid)
return M
Use it this way:
local r = require("runonce")
r.run("urxvtd -q -o -f")
r.run("urxvtc")
r.run("urxvtc")
r.run("wmname LG3D")

