Files
UNITRONIX 3484ef68be Enhance support agent with audio handling and consent management
- Added audio stream handling to the agent, including support for audio start and stop messages.
- Introduced lifecycle callbacks for consent and session management in the agent configuration.
- Updated desktop handling to utilize new consent handler and session start/end callbacks.
- Improved UI to reflect enrollment status and consent requests, enhancing user experience.
- Refactored branding structure to include additional color properties for better theming.
2026-06-04 02:09:19 +02:00

12 lines
209 B
Go

//go:build linux
package agent
// audioCaptureArgs returns ffmpeg input arguments for Linux PulseAudio/PipeWire.
func audioCaptureArgs() []string {
return []string{
"-f", "pulse",
"-i", "default",
}
}