aboutsummaryrefslogtreecommitdiff
path: root/src/etc/logout-manager.conf
diff options
context:
space:
mode:
authorB Stack <bgstack15@gmail.com>2020-03-19 19:36:22 +0000
committerB Stack <bgstack15@gmail.com>2020-03-19 19:36:22 +0000
commitb2dedd0c9988e888a53de366c65991d91c20c357 (patch)
tree15aaaec948f6d03fc91a60b54d86ec3dfa57a13e /src/etc/logout-manager.conf
parentcleanup (diff)
parentminor fixes (diff)
downloadlogout-manager-b2dedd0c9988e888a53de366c65991d91c20c357.tar.gz
logout-manager-b2dedd0c9988e888a53de366c65991d91c20c357.tar.bz2
logout-manager-b2dedd0c9988e888a53de366c65991d91c20c357.zip
Merge branch 'add-ncurses' into 'master'
add ncurses and cli versions and makefile See merge request bgstack15/logout-manager!1
Diffstat (limited to 'src/etc/logout-manager.conf')
-rw-r--r--src/etc/logout-manager.conf16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/etc/logout-manager.conf b/src/etc/logout-manager.conf
new file mode 100644
index 0000000..51b86d1
--- /dev/null
+++ b/src/etc/logout-manager.conf
@@ -0,0 +1,16 @@
+[logout-manager]
+lock_command="/usr/libexec/logout-manager/lm-helper lock"
+logout_command="/usr/libexec/logout-manager/lm-helper logout"
+hibernate_command="sudo /usr/libexec/logout-manager/lm-helper hibernate"
+reboot_command="sudo /usr/libexec/logout-manager/lm-helper reboot"
+shutdown_command="sudo /usr/libexec/logout-manager/lm-helper shutdown"
+
+[icons]
+size = 24
+#theme = default
+# use names as used by the icon theme, or give a full path here
+hibernate = system-hibernate
+lock = system-lock-screen
+logout = system-log-out
+reboot = system-reboot
+shutdown = system-shutdown
bgstack15