On Sun, 17 Jan 2010, Franco Fallica wrote: > I start awesome from .xsession. How can I grab the output? or how can I > start it from console? dmesg and /var/log/messages don't show anything
Just redirect awesome's output to some file. I start awesome from .xsession using following line: while true; do awesome > /tmp/awesome.log 2>&1; done "> 2>&1" is for logging, while loop allows me to upgrade awesome without restarting Xserver, closing other clients, and loosing tags on clients. -- Regards, Paweł Zuzelski -- To unsubscribe, send mail to [email protected].
