wok-next diff slim/stuff/etc/slim.conf @ rev 263

Add slim X login manager + deps
author Christophe Lincoln <pankso@slitaz.org>
date Sun Feb 24 20:48:39 2008 +0100 (2008-02-24)
parents
children cedecdaf2136
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/slim/stuff/etc/slim.conf	Sun Feb 24 20:48:39 2008 +0100
     1.3 @@ -0,0 +1,76 @@
     1.4 +# /etc/slim.conf: Slim login manger configuration file
     1.5 +#
     1.6 +
     1.7 +# Path, X server and arguments (if needed)
     1.8 +# Note: -xauth $authfile is automatically appended
     1.9 +default_path        ./:/bin:/usr/bin:/usr/local/bin
    1.10 +default_xserver     /usr/bin/Xvesa
    1.11 +xserver_arguments   -ac -shadow dpms -screen 1024x768x24
    1.12 +
    1.13 +# Commands for halt, login, etc.
    1.14 +halt_cmd            /sbin/poweroff
    1.15 +reboot_cmd          /sbin/reboot
    1.16 +console_cmd         /usr/bin/xterm -C -fg white -bg black +sb -T "Console login" -e /bin/sh -l -c "exec /bin/login"
    1.17 +#suspend_cmd         /usr/sbin/suspend
    1.18 +
    1.19 +# Full path to the xauth binary
    1.20 +xauth_path          /usr/bin/xauth 
    1.21 +
    1.22 +# Xauth file for server
    1.23 +authfile            /var/run/slim.auth
    1.24 +
    1.25 +# Activate numlock when slim starts. Valid values: on|off
    1.26 +# numlock             on
    1.27 +
    1.28 +# Hide the mouse cursor (note: does not work with some WMs).
    1.29 +# Valid values: true|false
    1.30 +hidecursor          true
    1.31 +
    1.32 +# This command is executed after a succesful login.
    1.33 +# you can place the %session and %theme variables
    1.34 +# to handle launching of specific commands in .xinitrc
    1.35 +# depending of chosen session and slim theme
    1.36 +login_cmd           exec /bin/sh -l ~/.xinitrc %session
    1.37 +
    1.38 +# Commands executed when starting and exiting a session.
    1.39 +# They can be used for registering a X11 session with
    1.40 +# sessreg. You can use the %user variable
    1.41 +#
    1.42 +# sessionstart_cmd	some command
    1.43 +# sessionstop_cmd	some command
    1.44 +
    1.45 +# Start in daemon mode. Valid values: yes | no
    1.46 +# Note that this can overridden by the command line
    1.47 +# option "-d"
    1.48 +#daemon	            yes
    1.49 +
    1.50 +# Available sessions (first one is the default).
    1.51 +# The current chosen session name is replaced in the login_cmd
    1.52 +# above, so your login command can handle different sessions.
    1.53 +# see the xinitrc.sample file shipped with slim sources
    1.54 +sessions            jwm,e17
    1.55 +
    1.56 +# Executed when pressing F11 (requires imagemagick)
    1.57 +#screenshot_cmd      mtpaint -s /root/slim-shot.png
    1.58 +
    1.59 +# welcome message. Available variables: %host, %domain
    1.60 +welcome_msg         Welcome to %host
    1.61 +
    1.62 +# shutdown / reboot messages
    1.63 +shutdown_msg       The system is going down...
    1.64 +reboot_msg         The system is rebooting...
    1.65 +
    1.66 +# default user, leave blank or remove this line
    1.67 +# for avoid pre-loading the username.
    1.68 +default_user        hacker
    1.69 +
    1.70 +# current theme, use comma separated list to specify a set to 
    1.71 +# randomly choose from
    1.72 +current_theme       slitaz
    1.73 +
    1.74 +# Lock file
    1.75 +lockfile            /var/lock/slim.lock
    1.76 +
    1.77 +# Log file
    1.78 +logfile             /var/log/slim.log
    1.79 +