Advertisement
Guest User

Untitled

a guest
Jul 2nd, 2017
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 2.88 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/sh - ~/.xinitrc %session
  37. login_cmd             exec /bin/bash -login /etc/X11/Xsession %session
  38.  
  39. # Commands executed when starting and exiting a session.
  40. # They can be used for registering a X11 session with
  41. # sessreg. You can use the %user variable
  42. #
  43. # sessionstart_cmd  some command
  44. # sessionstop_cmd   some command
  45.  
  46. # Start in daemon mode. Valid values: yes | no
  47. # Note that this can be overriden by the command line
  48. # options "-d" and "-nodaemon"
  49. # daemon    yes
  50.  
  51. # Set directory that contains the xsessions.
  52. # slim reads xsesion from this directory, and be able to select.
  53. sessiondir            /usr/share/xsessions/
  54.  
  55. # Executed when pressing F11 (requires scrot)
  56. screenshot_cmd      scrot /root/slim.png
  57.  
  58. # welcome message. Available variables: %host, %domain
  59. welcome_msg         Welcome to %host
  60.  
  61. # Session message. Prepended to the session name when pressing F1
  62. # session_msg         Session:
  63.  
  64. # shutdown / reboot messages
  65. shutdown_msg       The system is halting...
  66. reboot_msg         The system is rebooting...
  67.  
  68. # default user, leave blank or remove this line
  69. # for avoid pre-loading the username.
  70. #default_user        simone
  71.  
  72. # Focus the password field on start when default_user is set
  73. # Set to "yes" to enable this feature
  74. #focus_password      no
  75.  
  76. # Automatically login the default user (without entering
  77. # the password. Set to "yes" to enable this feature
  78. #auto_login          no
  79.  
  80.  
  81. # current theme, use comma separated list to specify a set to
  82. # randomly choose from
  83. current_theme       debian-lines
  84.  
  85. # Lock file
  86. lockfile            /var/run/slim.lock
  87.  
  88. # Log file
  89. logfile             /var/log/slim.log
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement