init: Start AudioServer on boot

This commit is contained in:
Bananymous 2025-08-10 23:16:44 +03:00
parent 309ec660b6
commit 4f61230506
1 changed files with 6 additions and 0 deletions

View File

@ -42,6 +42,12 @@ int main(int argc, char** argv)
exit(1);
}
if (fork() == 0)
{
execl("/bin/AudioServer", "AudioServer", NULL);
exit(1);
}
bool first = true;
termios termios;