summaryrefslogtreecommitdiffstats
path: root/.local/bin/pacify-pulseaudio
diff options
context:
space:
mode:
authorAmin Bandali <bandali@kelar.org>2024-02-25 14:04:25 -0500
committerAmin Bandali <bandali@kelar.org>2024-02-25 14:05:45 -0500
commitb8a7310d32bb6a7eba1c8a1213c7dd42f0428f0c (patch)
tree375be1a3af987371d8e1bb798d6a2cfa1c9340fe /.local/bin/pacify-pulseaudio
parent89840581fbcc9228f99ca6c448a29d1cd5da2627 (diff)
downloadconfigs-b8a7310d32bb6a7eba1c8a1213c7dd42f0428f0c.tar.gz
configs-b8a7310d32bb6a7eba1c8a1213c7dd42f0428f0c.tar.xz
configs-b8a7310d32bb6a7eba1c8a1213c7dd42f0428f0c.zip
Pacify pulseaudio and libcanberra to cope with randomized machine-id
Diffstat (limited to '.local/bin/pacify-pulseaudio')
-rwxr-xr-x.local/bin/pacify-pulseaudio28
1 files changed, 28 insertions, 0 deletions
diff --git a/.local/bin/pacify-pulseaudio b/.local/bin/pacify-pulseaudio
new file mode 100755
index 0000000..18d6ee5
--- /dev/null
+++ b/.local/bin/pacify-pulseaudio
@@ -0,0 +1,28 @@
+#!/bin/sh
+
+# Copyright (c) 2024 Amin Bandali <bandali@kelar.org>
+#
+# Copying and distribution of this file, with or without modification,
+# are permitted in any medium without royalty provided the copyright
+# notice and this notice are preserved. This file is offered as-is,
+# without any warranty.
+
+# pulseaudio is trash and insists on using machine-id as a prefix for
+# its database filenames under ~/.config/pulse. So, on systems with
+# randomized machine-ids like Devuan GNU/Linux it shits the bed and
+# can't find its own database files. So we do its job for it and
+# rename its database files on each boot. Ditto for libcanberra's
+# event sound cache database.
+
+cur_id_path=/var/lib/dbus/machine-id
+prev_id_path="$XDG_CACHE_HOME/tmp-prevmid"
+cur_id="$(cat $cur_id_path)"
+prev_id="$(cat $prev_id_path)"
+
+for f in $XDG_CONFIG_HOME/pulse/$prev_id-* \
+ $XDG_CACHE_HOME/event-sound-cache.tdb.$prev_id.*; do
+ fnew="$(echo $f | sed "s/$prev_id/$cur_id/")"
+ mv $f $fnew
+done
+
+cp -p $cur_id_path $prev_id_path