diff options
-rwxr-xr-x | 90_reboot | 2 | ||||
-rwxr-xr-x | 91_poweroff | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -3,7 +3,7 @@ echo "Adding reboot option." >&2 cat << EOF -menuentry 'Reboot' --class tool { +menuentry 'Reboot' --class tool --id reboot { reboot } EOF diff --git a/91_poweroff b/91_poweroff index 04fb591..3d6ef05 100755 --- a/91_poweroff +++ b/91_poweroff @@ -3,7 +3,7 @@ echo "Adding poweroff option." >&2 cat << EOF -menuentry 'Poweroff' --class tool { +menuentry 'Poweroff' --class tool --id poweroff { halt } EOF |