Is it possible to save an xmonad session to a file and reload it on the fly? I don't want to save only the last session but to be able to save different sessions to different files and reload it if I want.
Tell me more
×
Unix & Linux Stack Exchange is a question and answer site for
users of Linux, FreeBSD and other Un*x-like operating systems.. It's 100% free, no registration required.
|
If you just want to start a certain set of program, e.g. everything you need for graphic editing or so, you could just write some little shell script to start those. This would have the added benefit that you could "restore" multiple settings at once, e.g. chat (pidgin, irssi), browsing (chrome). The only drawback I see is that you need to manually write your "session files". |
|||
|
|
exec xmonad, and then choose the one you want at log in. You can then use xmonad'smanageHooks to place them in the right arrangement on the right workspace. – Edd Steel Dec 30 '11 at 16:02xmonad-sessions, a 2-year old try at doing something akin to session mgmt using XMonad. Haven't tested it, though. I guess you'd get the best of the bargain with a combination of a lightweight session manager (XFCE's, maybe?) using XMonad for window management. – sr_ Mar 6 '12 at 9:40