Advertisement
Guest User

Untitled

a guest
Jan 29th, 2011
150
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.90 KB | None | 0 0
  1. ############################
  2. ### GLOBAL CONFIGURATION ###
  3. ############################
  4.  
  5. # Set CDM theme and dialog options
  6. theme=cdm
  7. countfrom=1
  8.  
  9. # List all WM binary names
  10. wmbinlist=(awesome startxfce4 dwm)
  11.  
  12. # List all WM display names
  13. wmdisplist=(Awesome Xfce DWM)
  14.  
  15. # Allow console login?
  16. allowconsole=yes
  17.  
  18. # Allow shutdown?
  19. allowshutdown=yes
  20. shutdowncommand='sudo shutdown -h now'
  21. rebootcommand='sudo shutdown -r now'
  22.  
  23. # Allow suspend?
  24. # Note that this option requires pm-utils
  25. # to be installed and properly configured.
  26. allowsuspend=no
  27. suspendcommand='sudo pm-suspend'
  28. allowhibernate=no
  29. hibernatecommand='sudo pm-hibernate'
  30.  
  31. # Set configuration for specific users?
  32. userconfig=(courtney)
  33.  
  34. ##########################
  35. ### USER CONFIGURATION ###
  36. ##########################
  37.  
  38. courtney() {
  39. # Set CDM theme
  40. theme=lime
  41.  
  42. # List user allowed WM binary names
  43. wmbinlist=(awesome startxfce4 dwm)
  44.  
  45. # List user allowed WM display names
  46. wmdisplist=(Awesome Xfce DWM)
  47.  
  48. # Allow console login?
  49. allowconsole=yes
  50.  
  51. # Allow shutdown?
  52. allowshutdown=yes
  53.  
  54. # Set specific display for user
  55. # (Not honored unless locktty=yes)
  56. # display=1
  57. }
  58.  
  59. ############################
  60. ### SYSTEM CONFIGURATION ###
  61. ############################
  62.  
  63. # Set default display
  64. display=0
  65.  
  66. # Where should first X tty be spawned?
  67. xtty=7
  68.  
  69. # Restrict tty? (By default, cdm increments X tty, this setting
  70. # allows administrators to lock users into one specific tty by
  71. # setting the display=N option on a per-user basis.)
  72. locktty=no
  73.  
  74. # Enable login shell (fixes issues with some keymaps, uses bash).
  75. # Note that your bash scripts won't have any terminal as stdin when
  76. # started in this way. This may break some commands, including stty,
  77. # unless you explicitly check for [ -t 0 ] or that every login shell
  78. # is also interactive. However, we're sending stdout and stderr to
  79. # /dev/null, so you won't see the complaints.
  80. loginshell=no
  81.  
  82. # The use of consolekit has recently become manditory with hal. However,
  83. # some users might prefer not using either one. If you don't want to
  84. # use consolekit, set the following variable to "no".
  85. consolekit=yes
  86.  
  87. # Timeout for waiting for X session to register with consoleKit
  88. consolekittime=30
  89.  
  90. # Additional arguments to pass to X server
  91. # When usexinit=yes, we use ~/.xinitrc when it exists or /etc/X11/xinit/xinitrc
  92. # when it doesn't. These are passed the chosen window manager as $1; note that
  93. # the stock /etc/X11/xinit/xinitrc ignores this and always starts twm and three
  94. # xterms. Your custom xinitrc should start the window manager supplied as $1
  95. # instead. There is a sample xinitrc included at /usr/share/cdm/xinitrc.skel.
  96. # If usexinit=no, then we instead call the chosen window manager directly.
  97. usexinit=no
  98.  
  99. # Additional arguments to pass to X server; it will be called as:
  100. # exec /usr/bin/X :$display $serverargs vt$((xtty+display))
  101. serverargs="-nolisten tcp -dpi 96"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement