init: Start Clipboard server on startup
I had forgotten to commit this when I added the clipboard server :D
This commit is contained in:
parent
7667fe6ca5
commit
60ec5d30fd
|
|
@ -32,19 +32,25 @@ int main(int argc, char** argv)
|
||||||
|
|
||||||
if (fork() == 0)
|
if (fork() == 0)
|
||||||
{
|
{
|
||||||
execl("/bin/dhcp-client", "dhcp-client", NULL);
|
execl("/usr/bin/dhcp-client", "dhcp-client", NULL);
|
||||||
exit(1);
|
exit(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (fork() == 0)
|
if (fork() == 0)
|
||||||
{
|
{
|
||||||
execl("/bin/resolver", "resolver", NULL);
|
execl("/usr/bin/resolver", "resolver", NULL);
|
||||||
exit(1);
|
exit(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (fork() == 0)
|
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);
|
exit(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue