power.cfg 484 Bytes
Newer Older
longpanda's avatar
longpanda committed
1
2
3
4
5
6
submenu "Power" --class=debug_power --class=F5tool {
    menuentry Reboot --class=debug_reboot --class=debug_power --class=F5tool {
        echo -e '\n\nSystem is rebooting ... \n'
        sleep 1
        reboot
    }
7

longpanda's avatar
longpanda committed
8
9
10
11
12
    menuentry Halt --class=debug_halt --class=debug_power --class=F5tool {
        echo -e '\n\nSystem is halting ... \n'
        sleep 1
        halt
    }
13

longpanda's avatar
longpanda committed
14
15
16
    menuentry 'Return to previous menu [Esc]' --class=vtoyret VTOY_RET {
        echo 'Return ...'
    }
17
}