You are not logged in.
Recently i bought dark project hs5 headphones (bluetooth/2.4 GHz)
And i have a slight noise on 2.4 mode in left ear. On android too
I know that some of 2.4 headphones have it, BUT if i change volume of sound on linux (found using pavucontrol), noise disappears for a second.
Now i'm using script like this, but its really bad fix:
#!/bin/bash
set -x
sink_id=$(wpctl status | grep -F 'HS5 Analog Stereo' | awk '{print $3}' | tr -d '.')
if [[ -z "$sink_id" ]]; then
echo "Not found sink HS5 Analog Stereo"
exit 1
fi
while true; do
wpctl set-volume "$sink_id" 1
sleep 1
wpctl set-volume "$sink_id" 0.99
sleep 1
done
Offline
also, this fix is bad because i can hear that 1%
UPD: fix V2 turbo-flex
#!/bin/bash
set -x
sink_id=$(wpctl status | grep -F 'HS5 Analog Stereo' | awk '{print $3}' | tr -d '.')
if [[ -z "$sink_id" ]]; then
echo "Not found sink HS5 Analog Stereo"
exit 1
fi
while true; do
wpctl set-volume "$sink_id" 1
sleep 1
wpctl set-volume "$sink_id" 0.99
done
Last edited by Zilibobka (2025-06-15 17:24:58)
Offline