diff options
| author | Sergio <sergiotarxz@posteo.net> | 2026-09-17 11:57:52 +0200 |
|---|---|---|
| committer | Sergio <sergiotarxz@posteo.net> | 2026-09-17 11:57:52 +0200 |
| commit | faf528e8fd4cfff2d658203b921529f62b12d203 (patch) | |
| tree | 40f53bc3719a8502dda40e15b1d003114fdc2527 | |
| parent | 148e3c695e4c61e492242a3e69953b67fe2c6cc3 (diff) | |
Adding power-profiles-daemon to the default enabled services.v1.0.0-rc10
| -rw-r--r-- | lib/AlgaOS/Updater/GUI.pm | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/AlgaOS/Updater/GUI.pm b/lib/AlgaOS/Updater/GUI.pm index 49db556..9bb7102 100644 --- a/lib/AlgaOS/Updater/GUI.pm +++ b/lib/AlgaOS/Updater/GUI.pm @@ -309,6 +309,10 @@ EOF if ( system qw{sudo emerge --depclean} ) { exit 1; } + my @services = qw/power-profiles-daemon/; + for my $service (@services) { + system qw{systemctl enable --now}, $service; + } exit 0; } $self->app->timeout_add( |
