Create a $HOME/.config/systemd/user/speakers.service file with the following content:
[Unit]
Description=Force Speakers Audio
After=pulseaudio.service
[Service]
Type=oneshot
ExecStart=/usr/bin/pactl set-card-profile alsa_card.pci-0000_bd_00.6 "output:analog-stereo"
Restart=on-failure
RestartSec=5
[Install]
WantedBy=default.targetRun this command to enable it on boot:
systemctl --user enable speakersReboot and good luck.
This one will show a list of cards:
pactl list cardsI think it's part of alsa-utils ... look for output:analog-stereo as group, likely with type headphones then use the Name found on top:
Name: alsa_card.pci-0000_bd_00.6
where alsa_card.pci-0000_bd_00.6 should be your own thing.
That's it, next time you should have at some point audio forced to your speakers with whole volume up so you can manage volume via speakers.