This repository has been archived on 2022-12-29. You can view files and clone it, but cannot push or open issues or pull requests.
zeropod/bin/main.js

32 lines
739 B
JavaScript

"use strict";
exports.__esModule = true;
var menu_1 = require("./menu/menu");
var interface_1 = require("./menu/interface");
var menu = new menu_1.Menu([
{
display: "df -h",
type: interface_1.MenuType.ExecCommand,
command: ["df", "-h"]
},
{
display: "Games",
type: interface_1.MenuType.SubMenu,
subMenu: [
{
display: "Chess",
type: interface_1.MenuType.ExecCommand,
command: ["df", "-h"]
},
]
},
{
display: "Reboot",
type: interface_1.MenuType.Reboot
},
{
display: "Shutdown",
type: interface_1.MenuType.Shutdown
},
], true);
menu.getSelection();