1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77
|
# TTY, where emptty will start.
TTY_NUMBER=7
# Enables switching to defined TTY number.
SWITCH_TTY=true
# Enables printing of /etc/issue in daemon mode.
PRINT_ISSUE=true
# Enables printing of default motd, /etc/emptty/motd or /etc/emptty/motd-gen.sh.
PRINT_MOTD=true
# Preselected user, if AUTOLOGIN is enabled, this user is logged in.
#DEFAULT_USER=user
# Enables Autologin, if DEFAULT_USER is defined and part of nopasswdlogin group. Possible values are "true" or "false".
AUTOLOGIN=false
# The default session used, if Autologin is enabled. If session is not found in list of session, it proceeds to manual selection.
# AUTOLOGIN_SESSION=i3
# If Autologin is enabled and session does not start correctly, the number of retries in short period is kept to eventually stop the infinite loop of restarts. -1 is for infinite retries, 0 is for no retry.
# AUTOLOGIN_MAX_RETRY=2
# Default LANG, if user does not have set own in init script.
#LANG=en_US.UTF-8
# Starts desktop with calling "dbus-launch".
DBUS_LAUNCH=true
# Starts Xorg desktop with calling "~/.xinitrc" script, if is true, file exists and selected WM/DE is Xorg session, it overrides DBUS_LAUNCH.
XINITRC_LAUNCH=false
# Prints available WM/DE each on new line instead of printing on single line.
VERTICAL_SELECTION=false
# Defines the way, how is logging handled. Possible values are "rotate", "appending" or "disabled".
#LOGGING=rotate
# Overrides path of log file
#LOGGING_FILE=/var/log/emptty/[TTY_NUMBER].log
# Arguments passed to Xorg server.
#XORG_ARGS=
# Allows to use dynamic motd script to generate custom MOTD.
#DYNAMIC_MOTD=false
# Allows to override default path to dynamic motd.
#DYNAMIC_MOTD_PATH=/etc/emptty/motd-gen.sh
# Allows to override default path to static motd.
#MOTD_PATH=/etc/emptty/motd
# Foreground color, available only in daemon mode.
#FG_COLOR=LIGHT_BLACK
# Background color, available only in daemon mode.
#BG_COLOR=BLACK
# Enables numlock in daemon mode. Possible values are "true" or "false".
#ENABLE_NUMLOCK=false
# Defines the way, how is logging of session errors handled. Possible values are "rotate", "appending" or "disabled".
#SESSION_ERROR_LOGGING=disabled
# Overrides path of session errors log file
#SESSION_ERROR_LOGGING_FILE=/var/log/emptty/session-errors.[TTY_NUMBER].log
# If set true, it will not use `.emptty-xauth` file, but the standard `~/.Xauthority` file. This allows to handle xauth issues.
#DEFAULT_XAUTHORITY=false
#If set true, Xorg will be started as rootless, if system allows and emptty is running in daemon mode.
#ROOTLESS_XORG=false
#If set true, environmental groups are printed to differ Xorg/Wayland/Custom/UserCustom desktops.
IDENTIFY_ENVS=false
|