29 lines
1.0 KiB
Plaintext
29 lines
1.0 KiB
Plaintext
# this file is the configuration file for the SessionMaganer daemon
|
|
# daemon
|
|
# By default, the daemon will look for this file in the following locations
|
|
# /etc/diya/daemon.conf
|
|
# or it can be specified using the -c option
|
|
# example: diya-session-manager -c /path/to/daemon.conf
|
|
|
|
# PAM service
|
|
# the pam service used for authentication
|
|
pam_service = "diya"
|
|
|
|
# Default session command
|
|
# The command to run to start a default session when there are'nt
|
|
# any session ruining. Often, this default session will be a login
|
|
# session that handles the user input and send user
|
|
# credentials to the daemon via Dbus message
|
|
default_session_command = "/usr/bin/diyac -x /usr/bin/diya-login-shell"
|
|
|
|
# default session user
|
|
# The user that owns the default session, root by default
|
|
# if this setting is not set
|
|
default_session_user = "xdg"
|
|
|
|
# User session command
|
|
# The command to run to start a user session after the
|
|
# login session is successful
|
|
# the logged in user will own this session
|
|
|
|
user_session_command = "/usr/bin/diyac -x /usr/bin/diya-shell" |