| Summary: | Add bluetooth headset profile switch/select to plasma-pulseaudio applet | ||
|---|---|---|---|
| Product: | [Unmaintained] plasma-pa | Reporter: | Johannes Tiemer <jtiemer> |
| Component: | general | Assignee: | David Rosca <nowrep> |
| Status: | RESOLVED DUPLICATE | ||
| Severity: | wishlist | CC: | dsm.iv.tr, nicolas.fella, null, plasma-bugs-null |
| Priority: | NOR | ||
| Version First Reported In: | unspecified | ||
| Target Milestone: | --- | ||
| Platform: | Arch Linux | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
|
Description
Johannes Tiemer
2020-04-17 17:03:12 UTC
Are you really using kmix or the Plasma PulseAudio applet? Hey Christoph, embarrasingly you are right … I am using the plasma-pa applet. The name kmix is engraved in my brain still from the pre-Plasma times. I guess the correct package is plasma-pa then? Yep, plasma-pa is Plasma PulseAudio. Thx, changed it. Sorry for the misclassification. I'm experiencing this as well, and wrote a script workaround that may help you. Set $CARD to your device and create a panel widget to trigger it. I definitely agree that there should be a less cumbersome way to change profiles.
#!/bin/bash
CARD="bluez_card.10_4F_A8_D8_29_9B"
HSFILE=$HOME/.hstoggle
if [ -e $HSFILE ]; then
pacmd set-card-profile $CARD "a2dp_sink"
rm $HSFILE
else
pacmd set-card-profile $CARD "headset_head_unit"
touch $HSFILE
fi
*** Bug 421809 has been marked as a duplicate of this bug. *** *** This bug has been marked as a duplicate of bug 372562 *** |