ProzillaOS/packages/apps/terminal/core/commands/reboot.ts
2024-06-16 21:46:44 +02:00

11 lines
No EOL
264 B
TypeScript

import { reloadViewport } from "../../../_utils/browser.utils";
import { Command } from "../command";
export const reboot = new Command()
.setManual({
purpose: "Reboot the system"
})
.setExecute(function() {
reloadViewport();
return { blank: true };
});