README 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. README file for the X Session Manager (xsm)
  2. -------------------------------------------
  3. xsm is a session manager. A session is a group of applications, each
  4. of which has a particular state. xsm allows you to create arbitrary
  5. sessions - for example, you might have a "light" session, a "development"
  6. session, or an "xterminal" session. Each session can have its own set of
  7. applications. Within a session, you can perform a "checkpoint" to save
  8. application state, or a "shutdown" to save state and exit the session. When
  9. you log back in to the system, you can load a specific session, and you can
  10. delete sessions you no longer want to keep.
  11. Some session managers simply allow you to manually specify a list of
  12. applications to be started in a session. xsm is more powerful because it
  13. lets you run applications and have them automatically become part of the
  14. session. On a simple level, xsm is useful because it gives you this ability
  15. to easily define which applications are in a session. The true power of
  16. xsm, however, can be taken advantage of when more and more applications
  17. learn to save and restore their state.
  18. This README file discusses the necessary steps you must take to run xsm. To
  19. learn more about the details of xsm's functionality, read the xsm man page.
  20. Before building xsm, you should make sure you have the following libraries
  21. built on your system:
  22. libICE - the Inter Client Exchange Library
  23. libSM - the Session Management Library
  24. libXt - the X Toolkit with support for session management
  25. Once you are sure all of the required libraries are built, you are ready
  26. to build xsm.
  27. Before you can run xsm, you must make sure that the following programs are
  28. built and installed on your system:
  29. smproxy - the session manager proxy for applications that don't support
  30. R6 style session management
  31. iceauth - handles storing/retrieving ICE authentication information
  32. rstart - allows xsm to start applications on remote machines
  33. twm - window manager that support R6 style session management - takes
  34. care of saving window configurations in a session
  35. Note that to install rstart, you will need to have root privileges because
  36. the program must be installed in a system wide default path.
  37. *** rstart and iceauth should be installed on each machine that you expect
  38. to run applications on that will be part of your session ***
  39. Also note that twm is the default window manager that xsm starts up. If you
  40. would like to use a different window manager, follow the instructions in the
  41. xsm man page for defining the default startup applications. Be aware that if
  42. the window manager you choose has not been modified to support R6 style
  43. session management, window configurations will not be saved in your sessions.
  44. Once again, for more information about actually using xsm, please read the
  45. xsm man page.
  46. To learn more about making your applications "session aware", consult the
  47. X Toolkit Intrinsics documentation.