Advertisement
Guest User

Untitled

a guest
Feb 6th, 2021
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. #!/bin/sh
  2. exec tail -n +3 $0
  3. # This file provides an easy way to add custom menu entries. Simply type the
  4. # menu entries you want to add after this comment. Be careful not to change
  5. # the 'exec tail' line above.
  6.  
  7.  
  8.  
  9. if [ ${grub_platform} == "efi" ]; then
  10. fi
  11. menuentry "Shutdown" --class shutdown {
  12. echo "System shutting down..."
  13. halt
  14. }
  15. menuentry "Restart" --class restart {
  16. echo "System rebooting..."
  17. reboot
  18. }
  19. menuentry "Firmware Setup (UEFI)" --class recovery {
  20. fwsetup
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement