Added Libra Color support

This commit is contained in:
Piekay
2024-07-10 05:46:01 +02:00
parent d2b513bb74
commit d911aac4ec
12 changed files with 138 additions and 0 deletions

10
libra-color/scripts/boot.sh Executable file
View File

@@ -0,0 +1,10 @@
#!/bin/sh
# Start by renicing ourselves to a neutral value, to avoid any mishap...
renice 0 -p $$
# Launch in the background, with a clean env, after a setsid call to make very very sure udev won't kill us ;).
env -i -- setsid /usr/local/tailscale/on-boot.sh &
# Done :)
exit 0