aboutsummaryrefslogtreecommitdiff
path: root/src/commands/command.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/commands/command.c')
-rw-r--r--src/commands/command.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/commands/command.c b/src/commands/command.c
index eeac08e..9cbcb07 100644
--- a/src/commands/command.c
+++ b/src/commands/command.c
@@ -19,6 +19,8 @@ void exec_command(char *command) {
terminal_write_line("pong!");
else if (starts_with(command, "shutdown"))
shutdown();
+ else if (starts_with(command, "reboot"))
+ reboot();
else
terminal_write_line("Command not found!");
}