init: Start Clipboard server on startup

I had forgotten to commit this when I added the clipboard server :D
This commit is contained in:
Bananymous 2026-01-06 15:51:47 +02:00
parent 7667fe6ca5
commit 60ec5d30fd
1 changed files with 9 additions and 3 deletions

View File

@ -32,19 +32,25 @@ int main(int argc, char** argv)
if (fork() == 0)
{
execl("/bin/dhcp-client", "dhcp-client", NULL);
execl("/usr/bin/dhcp-client", "dhcp-client", NULL);
exit(1);
}
if (fork() == 0)
{
execl("/bin/resolver", "resolver", NULL);
execl("/usr/bin/resolver", "resolver", NULL);
exit(1);
}
if (fork() == 0)
{
execl("/bin/AudioServer", "AudioServer", NULL);
execl("/usr/bin/AudioServer", "AudioServer", NULL);
exit(1);
}
if (fork() == 0)
{
execl("/usr/bin/ClipboardServer", "ClipboardServer", NULL);
exit(1);
}