ProzillaOS/src/features/apps/terminal/commands/reboot.js
2023-12-26 11:53:48 +01:00

11 lines
No EOL
269 B
JavaScript

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