On Wed, 04 Mar 2026 22:52:35 -0600 "Ranjan Maitra via users" <[email protected]> wrote:
> On Wed Mar04'26 09:15:34PM, Community Support for Fedora Users wrote: > > From: Sergio Cipolla via users <[email protected]> > > Date: Wed, 04 Mar 2026 21:15:34 -0000 > > To: [email protected] > > Cc: Sergio Cipolla <[email protected]> > > Reply-To: Community support for Fedora users <[email protected]> > > Subject: Re: volume icon no longer works after F42 -> F43 upgrade > > > > Maybe volumeicon is already deprecated. > > I just did a web search for alternatives: > > https://duckduckgo.com/?t=ffab&q=modern+replacement+for+volumeicon+linux&ia=web > > -- > > Thank you, I have pavucontrol, and that works even now, but that does not do > the same thing as volumeicon which actually can be made to use pavucontrol > (which is what I used to do) and does not go into the system tray. Perhaps it > will work: the rest (really, volctl and pwvucontrol on linux) do not seem to > be in the Fedora repos. > > Ranjan > -- https://github.com/fernandotcl/pa-applet pa-applet.spec ========= # do not generate debugging packages by default %define debug_package %{nil} %global _hardened_build 1 %define name pa-applet %define tarname %{name}-master.tar.gz %define version 1.0 %define rel 0%{?dist} Summary: pa-applet is a systray-applet that allows you to control some of PulseAudio features. Name: %{name} Version: %{version} Release: %{rel} License: GPL Group: Applications/Productivity Source0: %{name}-%{version}.tar.gz Prefix: %{_prefix} Vendor: Fernando Tarlá Cardoso Lemos <fernandotcl AT gmail.com> Packager: %{packager} Provides: %{name} AutoReqProv: yes Buildroot: %{_tmppath}/%{name}-%{version}-root BuildRequires: glib2-devel gtk3-devel libnotify-devel pulseaudio-libs-devel autoconf automake pkg-config Requires: pasystray #-------------------------------------------------------------------------- %description pa-applet is a systray-applet that allows you to control some of PulseAudio's[1] features. More specifically, pa-applet allows you to control the volume level of the default sink and mute or unmute it. It also allows you to change the active profile of the default sink, which can be useful to tell PulseAudio to redirect audio to the HDMI output instead of outputting to the built-in speakers in a computer connected to an HDMI device. pa-applet is not meant as a replacement to padevchooser[2] or pavucontrol[3], which are much more feature-complete projects. pa-applet offers a more limited feature set, but in a nicer shell, more appropriate for regular desktop usage. Note that this project is not affiliated with or endorsed by the PulseAudio project. #-------------------------------------------------------------------------- %prep %setup -n %{name}-master chmod +rw -R * #-------------------------------------------------------------------------- %build ./autogen.sh #./configure --prefix=%{_prefix} --mandir=%{_mandir} --disable-nls %configure --disable-nls make #-------------------------------------------------------------------------- %install [ -n "$RPM_BUILD_ROOT" -a "$RPM_BUILD_ROOT" != / ] && rm -rf $RPM_BUILD_ROOT make DESTDIR=${RPM_BUILD_ROOT} install find $RPM_BUILD_ROOT/%{_mandir} -type f -exec gzip -9nf {} \; || true cd $RPM_BUILD_DIR/%{name}-master find $RPM_BUILD_ROOT ! -type d | sed -e "s@^$RPM_BUILD_ROOT@@g" \ -e "s@^%{_prefix}/bin@%attr(755, root, root) %{_prefix}/bin@g" \ -e "/^\%{_prefix}\/share\/doc\/.*$/d;" \ > %{name}-filelist #-------------------------------------------------------------------------- %post %preun #-------------------------------------------------------------------------- %clean [ -n "$RPM_BUILD_ROOT" -a "$RPM_BUILD_ROOT" != / ] && rm -rf $RPM_BUILD_ROOT #-------------------------------------------------------------------------- %files -f %{name}-filelist %defattr(-,root,root) %doc [A-Z][A-Z]* ChangeLog #-------------------------------------------------------------------------- %define date %(echo `LC_ALL="C" date +"%a %b %d %Y"`) %changelog * %{date} Bob Marčan <[email protected]> - Fedora 43 -- _______________________________________________ users mailing list -- [email protected] To unsubscribe send an email to [email protected] Fedora Code of Conduct: https://docs.fedoraproject.org/en-US/project/code-of-conduct/ List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines List Archives: https://lists.fedoraproject.org/archives/list/[email protected] Do not reply to spam, report it: https://forge.fedoraproject.org/infra/tickets/issues/new
