blob: bf9e64a48b66efaf406c14e23a395c3626c1ae61 (
plain)
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
|
# configuration for openbox-shutdown
#
# buttons are shown in the order they are listed in this file
#
# each section contains the following values:
# command - command to execute when button is pressed
# can be used several times to execute more commands
# commands are executed in the order they are listed in this
# file
# image - location of the image for the button
# absolute path is recommended
# set to None if no image should be shown
# info_text - small text to show in the footer
# set to None if not requested
# label - label for the button
# uses mnemics
# set to None to disable
[reboot]
#command = openbox --exit
command = systemctl reboot
image = /usr/share/icons/hydroxygen/72x72/apps/gnome-session-reboot.png
info_text = Reboot
#label = _Neu starten
label = None
[shutdown]
#command = openbox --exit
command = systemctl poweroff
image = /usr/share/icons/hydroxygen/72x72/apps/gnome-session-halt.png
info_text = Halt
#label = _Herunterfahren
label = None
[suspend]
command = screen-locker.sh
command = systemctl suspend
image = /usr/share/icons/hydroxygen/72x72/apps/gnome-session-suspend.png
info_text = Suspend2Ram
#label = _Suspend
label = None
|