blob: 13837e36d24dbf28d4618da21d1c2c29715abf50 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# Salam Configuration File
# Copy to: ~/.config/salam/config.toml
window_width = 750
window_height = 225
[actions]
cancel = { enabled = true, label = "Cancel" }
logout = { enabled = true, command = "killall xmonad-x86_64-linux", label = "Logout" }
reboot = { enabled = true, command = "reboot", label = "Reboot" }
shutdown = { enabled = true, command = "shutdown -h now", label = "Shutdown" }
suspend = { enabled = true, command = "systemctl suspend", label = "Suspend" }
hibernate = { enabled = true, command = "systemctl hibernate", label = "Hibernate" }
lock = { enabled = true, command = "slock", label = "Lock" }
|