mirror of
https://github.com/nestriness/nestri.git
synced 2025-12-12 16:55:37 +02:00
## Description - Improves latency for runner - Fixes bugs in entrypoint bash scripts - Package updates, gstreamer 1.26 and workaround for it Modified runner workflow to hopefully pull latest cachyos base image on nightlies. This will cause a full build but for nightlies should be fine? Also removed the duplicate key-down workaround as we've enabled ordered datachannels now. Increased retransmit to 2 from 0 to see if it'll help with some network issues. Marked as draft as I need to do bug testing still, I'll do it after fever calms down 😅 <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit - **New Features** - Enhanced deployment workflows with optimized container image management. - Improved audio and video processing for lower latency and better synchronization. - Consolidated debugging options to ease command-line monitoring. - **Refactor** - Streamlined internal script flow and process handling for smoother performance. - Updated dependency management and communication protocols to boost overall stability. <!-- end of auto-generated comment: release notes by coderabbit.ai --> Co-authored-by: DatCaptainHorse <DatCaptainHorse@users.noreply.github.com>
57 lines
842 B
Plaintext
57 lines
842 B
Plaintext
[supervisord]
|
|
user=root
|
|
nodaemon=true
|
|
loglevel=info
|
|
logfile=/tmp/supervisord.log
|
|
|
|
[program:dbus]
|
|
user=root
|
|
command=dbus-daemon --system --nofork --nopidfile
|
|
autorestart=true
|
|
autostart=true
|
|
startretries=3
|
|
priority=1
|
|
|
|
[program:seatd]
|
|
user=root
|
|
command=seatd
|
|
autorestart=true
|
|
autostart=true
|
|
startretries=3
|
|
priority=2
|
|
|
|
[program:pipewire]
|
|
user=nestri
|
|
command=dbus-launch pipewire
|
|
autorestart=true
|
|
autostart=true
|
|
startretries=3
|
|
priority=3
|
|
nice=-10
|
|
|
|
[program:pipewire-pulse]
|
|
user=nestri
|
|
command=dbus-launch pipewire-pulse
|
|
autorestart=true
|
|
autostart=true
|
|
startretries=3
|
|
priority=4
|
|
nice=-10
|
|
|
|
[program:wireplumber]
|
|
user=nestri
|
|
command=dbus-launch wireplumber
|
|
autorestart=true
|
|
autostart=true
|
|
startretries=3
|
|
priority=5
|
|
nice=-10
|
|
|
|
[program:entrypoint]
|
|
user=root
|
|
command=/etc/nestri/entrypoint.sh
|
|
autorestart=false
|
|
autostart=true
|
|
startretries=0
|
|
priority=10
|