ProzillaOS/src/features/apps/terminal/commands/exit.js

10 lines
No EOL
202 B
JavaScript

import Command from "../command.js";
export const exit = new Command()
.setManual({
purpose: "Quit terminal interface"
})
.setExecute((args, { exit }) => {
exit();
return { blank: true };
});