So I'm new to linux, and i use it for a few days. I had this problem that every time i stop a video playback my speaker turns off and after starting the video it turns on, but there is a few seconds of lag until it can restart.
The commands used that disabled my sound altogether are the following:
- mkdir -p ~/.config/wireplumber/main.lua.d
- nano ~/.config/wireplumber/main.lua.d/50-disable-suspend.lua
- alsa_monitor.rules = {
{
matches = {
{ { "node.name", "matches", "alsa_output.*" } },
},
apply_properties = {
["session.suspend-timeout-seconds"] = 0,
},
},
} - systemctl --user restart wireplumber pipewire pipewire-pulse
- sudo reboot
Now i have no sound and whatever i do cant get it to work. I even restored a system snapshot from yesterday, but no luck. Is there anything i can do to get my sound back?
Thank you!