39 lines
1.2 KiB
Diff
39 lines
1.2 KiB
Diff
--- a/lisp/sawfish/wm/commands/poweroff.jl 2016-01-04 00:25:57.000000000 +0100
|
|
+++ b/lisp/sawfish/wm/commands/poweroff.jl 2023-10-15 20:46:39.549680242 +0200
|
|
@@ -36,22 +36,22 @@
|
|
|
|
(define-structure-alias poweroff sawfish.wm.commands.poweroff)
|
|
|
|
- (defcustom reboot-command "ssd --reboot"
|
|
+ (defcustom reboot-command "doas reboot"
|
|
"The command used to reboot the computer."
|
|
:type string
|
|
:group (misc apps))
|
|
|
|
- (defcustom halt-command "ssd --shutdown"
|
|
+ (defcustom halt-command "doas poweroff"
|
|
"The command used to halt the computer."
|
|
:type string
|
|
:group (misc apps))
|
|
|
|
- (defcustom suspend-command "ssd --suspend"
|
|
+ (defcustom suspend-command "doas /usr/sbin/zzz"
|
|
"The command used to suspend the computer."
|
|
:type string
|
|
:group (misc apps))
|
|
|
|
- (defcustom hibernate-command "ssd --hibernate"
|
|
+ (defcustom hibernate-command "doas /usr/sbin/zzz"
|
|
"The command used to hibernate the computer."
|
|
:type string
|
|
:group (misc apps))
|
|
@@ -61,7 +61,7 @@
|
|
:type string
|
|
:group (misc apps))
|
|
|
|
- (defcustom lockdown-command "ssd --lockdown"
|
|
+ (defcustom lockdown-command "slock"
|
|
"The command used to lockdown the display."
|
|
:type string
|
|
:group (misc apps))
|