Advertisement
Guest User

cdmrc

a guest
Sep 15th, 2012
516
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.78 KB | None | 0 0
  1. #!/bin/bash
  2. #
  3. # Example config file for cdm(1).
  4. # Values set here is the default as in cdm(1).
  5.  
  6. # List of programs, commands with whitespaces should be quoted or escaped.
  7. # If unset, all sessions in /etc/X11/Sessions are offered as choices.
  8. #
  9. # (An example:)
  10. # binlist=(
  11. #   "~/.xsession"                    # Launch your X session,
  12. #   "/bin/bash --login"              # or just execute your shell,
  13. #   "/usr/bin/fbterm"                # or start a frame buffer console,
  14. #   "/usr/bin/cdm ~/.submenu.cdmrc"  # or go to a submenu :)
  15. # )
  16. binlist=("~/.xinitrc")
  17.  
  18. # List all program display names, one-by-one matched with $binlist.
  19. # Names with whitespaces should be quoted or escaped.
  20. #
  21. # (Continued example:)
  22. # namelist=("X session" Console FBTerm "Sub menu")
  23. namelist=("X session")
  24.  
  25. # Type of the programs, one-by-one matched with $binlist.
  26. # `C' for *C*onsole programs, which would be `exec'ed.
  27. # `X' for *X* programs, which would be run with cdm-xlaunch(1).
  28. #
  29. # (Continued example:)
  30. # flaglist=(X C C C)
  31. flaglist=(X)
  32.  
  33. # Style for the cdm dialog, which is printed with dialog(1).
  34. # Default to unset, causing dialog(1) to use the system wide default.
  35. # See /usr/share/doc/cdm/themes for some nice choices.
  36. dialogrc="default"
  37.  
  38. # Index of the first item in the menu.
  39. countfrom=0
  40.  
  41. # Set default display.
  42. display=0
  43.  
  44. # Where should the first X tty be spawned?
  45. # special value 'keep' causes to run X in current tty
  46. xtty=7
  47.  
  48. # Should cdm(1) stick to the specified display?
  49. locktty=no
  50.  
  51. # Additional arguments to pass to X server, which is usually called as:
  52. #   /usr/bin/X :$display $serverargs vt$((xtty+display))
  53. serverargs='-nolisten tcp'
  54.  
  55. # Use ConsoleKit for X session?
  56. consolekit=yes
  57.  
  58. # Timeout for waiting for X session to register with ConsoleKit.
  59. cktimeout=30
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement