Code: Select all
#!/bin/bash
/usr/bin/pulseaudio --start
Code: Select all
#!/bin/bash
/usr/bin/pulseaudio --start
~/.config/autostart/ only accepts .desktop files, you could try copying the pulseaudio.desktop file to that directory:rasat wrote: Sun Mar 08, 2020 6:07 am in /home there is nowhere which starts the below executive file, including ~/.config/autostart/
Code: Select all
cp /etc/xdg/autostart/pulseaudio.desktop ~/.config/autostart/
It looks like the bullseye PA package has gained a sysvinit script at /etc/init.d/pulseaudio-enable-autospawn — is that enabled?
Code: Select all
sudo sysv-rc-conf
Code: Select all
ls -l /etc/pulse/client.conf.d
Code: Select all
cat /etc/pulse/client.conf.d/*
Code: Select all
deb http://repo.antixlinux.com/testing testing main nonfree nosystemd
Code: Select all
sudo apt update && sudo apt dist-upgrade
Did you not try copying the extant pulseaudio.desktop file over?rasat wrote: Sun Mar 08, 2020 10:12 am Also .desktop in .config/autostart/ with "Exec=/usr/bin/pulseaudio --start" does not exe.
Code: Select all
Exec=start-pulseaudio-x11
Code: Select all
X-GNOME-Autostart-Phase=Initialization
Version 13.0-5 added a sysvinit script for autostart (as I noted above), the changelog says:dolphin_oracle wrote: Sun Mar 08, 2020 11:54 am Debian pulseaudio is not configured to be autostarted by anything but systemd.
See also https://bugs.debian.org/cgi-bin/bugrepo ... =%23923203 & https://bugs.debian.org/cgi-bin/bugrepo ... =%23923201* Enable autospawn automatically on sysvinit systems.
Instead of having a default configuration, make pulseaudio default to
disabled, and then have a sysvinit service to reenable the autospawn
setting
(Closes: #923203)
* Allow installing pulseaudio with elogind.
Because we now autospawn with non-systemd, we can use the weaker guarantees
provided by elogind
(Closes: #923201)
I tried all what were said earlier.Head_on_a_Stick wrote: Sun Mar 08, 2020 10:42 am Did you not try copying the extant pulseaudio.desktop file over?