mirror of
https://github.com/UNITRONIX/BetterDesk.git
synced 2026-09-11 13:49:03 +00:00
3484ef68be
- 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.
12 lines
209 B
Go
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",
|
|
}
|
|
}
|