Advertisement
Guest User

slim.conf

a guest
Feb 24th, 2014
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.11 KB | None | 0 0
  1. # Path, X server and arguments (if needed)
  2. # Note: -xauth $authfile is automatically appended
  3. #
  4. default_path /usr/local/bin:/usr/bin:/bin:/usr/local/games:/usr/games
  5. default_xserver /usr/bin/X11/X
  6. xserver_arguments -nolisten tcp
  7.  
  8. # Commands for halt, login, etc.
  9. halt_cmd /sbin/shutdown -h now
  10. reboot_cmd /sbin/shutdown -r now
  11. console_cmd /usr/bin/xterm -C -fg white -bg black +sb -T "Console login" -e /bin/sh -c "/bin/cat /etc/issue.net; exec /bin/login"
  12. #suspend_cmd /usr/sbin/suspend
  13.  
  14. # Full path to the xauth binary
  15. xauth_path /usr/bin/X11/xauth
  16.  
  17. # Xauth file for server
  18. authfile /var/run/slim.auth
  19.  
  20.  
  21. # Activate numlock when slim starts. Valid values: on|off
  22. # numlock on
  23.  
  24. # Hide the mouse cursor (note: does not work with some WMs).
  25. # Valid values: true|false
  26. # hidecursor false
  27.  
  28. # This command is executed after a succesful login.
  29. # you can place the %session and %theme variables
  30. # to handle launching of specific commands in .xinitrc
  31. # depending of chosen session and slim theme
  32. #
  33. # NOTE: if your system does not have bash you need
  34. # to adjust the command according to your preferred shell,
  35. # i.e. for freebsd use:
  36. #login_cmd exec /bin/bash - ~/.xinitrc %session
  37. login_cmd exec /bin/sh -login ~/.xinitrc %session
  38. #login_cmd exec /bin/bash -login /etc/X11/Xsession %session
  39.  
  40. # Commands executed when starting and exiting a session.
  41. # They can be used for registering a X11 session with
  42. # sessreg. You can use the %user variable
  43. #
  44. # sessionstart_cmd some command
  45. # sessionstop_cmd some command
  46.  
  47. # Start in daemon mode. Valid values: yes | no
  48. # Note that this can be overriden by the command line
  49. # options "-d" and "-nodaemon"
  50. # daemon yes
  51.  
  52. # Available sessions (first one is the default).
  53. # The current chosen session name is replaced in the login_cmd
  54. # above, so your login command can handle different sessions.
  55. # see the xinitrc.sample file shipped with slim sources
  56. sessions default,startxfce4,openbox,ion3,icewm,wmaker,blackbox,awesome
  57.  
  58. # Executed when pressing F11 (requires imagemagick)
  59. screenshot_cmd scrot /root/slim.png
  60.  
  61. # welcome message. Available variables: %host, %domain
  62. welcome_msg Welcome to %host
  63.  
  64. # Session message. Prepended to the session name when pressing F1
  65. # session_msg Session:
  66.  
  67. # shutdown / reboot messages
  68. shutdown_msg The system is halting...
  69. reboot_msg The system is rebooting...
  70.  
  71. # default user, leave blank or remove this line
  72. # for avoid pre-loading the username.
  73. default_user xXx
  74.  
  75. # Focus the password field on start when default_user is set
  76. # Set to "yes" to enable this feature
  77. #focus_password no
  78.  
  79. # Automatically login the default user (without entering
  80. # the password. Set to "yes" to enable this feature
  81. auto_login yes
  82.  
  83.  
  84. # current theme, use comma separated list to specify a set to
  85. # randomly choose from
  86. current_theme debian-joy
  87.  
  88. # Lock file
  89. lockfile /var/run/slim.lock
  90.  
  91. # Log file
  92. logfile /var/log/slim.log
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement