aboutsummaryrefslogtreecommitdiff
path: root/scripts/hostname/desktop1
diff options
context:
space:
mode:
authorCullum Smith <cullum@sacredheartsc.com>2024-10-16 21:18:49 -0400
committerCullum Smith <cullum@sacredheartsc.com>2024-10-16 21:18:49 -0400
commitaa28ec7ef20517e994f01753e8c4e6fdd4d0643c (patch)
treecea6c733c5e900f4ea54501ca7070694931124dc /scripts/hostname/desktop1
parent3c41d02428317d68ded5eb4fee5baf17f644a741 (diff)
downloadinfrastructure-aa28ec7ef20517e994f01753e8c4e6fdd4d0643c.tar.gz
more desktop fixes
Diffstat (limited to 'scripts/hostname/desktop1')
-rw-r--r--scripts/hostname/desktop124
1 files changed, 24 insertions, 0 deletions
diff --git a/scripts/hostname/desktop1 b/scripts/hostname/desktop1
new file mode 100644
index 0000000..0e6e551
--- /dev/null
+++ b/scripts/hostname/desktop1
@@ -0,0 +1,24 @@
+#!/bin/sh
+
+# This desktop has USB speakers and webcam USB microphone, so sndio can't
+# use both at the same time. This creates a virtual device combining both
+# of them into one virutal sound card.
+#
+# Because the virtual soundcard is installed to /dev/dsp, it will
+# automatically be used as the default.
+
+playback_device=1
+recording_device=0
+samplerate=48000
+bits=16
+buffer_ms=25
+microphone_gain=50
+
+pkg install -y virtual_oss
+sysrc -v \
+ virtual_oss_enable=YES \
+ virtual_oss_dsp="-T /dev/sndstat -C 2 -c 2 -S -r ${samplerate} -b ${bits} -s ${buffer_ms}ms -O /dev/dsp${playback_device} -R /dev/dsp${recording_device} -d dsp -t vsdp.ctl"
+service virtual_oss restart
+
+set_loader_conf "hint.pcm.${recording_device}.mic=${microphone_gain}"
+set_loader_conf "hint.pcm.${playback_device}.pcm=100"