Skip to content

Commit

Permalink
Fix power command
Browse files Browse the repository at this point in the history
  • Loading branch information
nmcain committed Feb 22, 2022
1 parent fb388d1 commit ceaf019
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/utils/action_manager/action_manager.dart
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ class ActionManager {

static void reboot() {
if (Platform.isLinux) {
Process.run("restart", []);
Process.run("reboot", []);
} else {
print("Not supported on this Platform");
}
Expand Down

0 comments on commit ceaf019

Please sign in to comment.