Tuner up to Main
Re: Tuner up to Main
Just added tuner to the tint panel which shows the svg icon. may be you are trying something else.
- dolphin_oracle
- Developer
- Posts: 22281
- Joined: Sun Dec 16, 2007 12:17 pm
Re: Tuner up to Main
Nevermind
I think he means the icon that shows in the task list while the app is running
I think he means the icon that shows in the task list while the app is running
http://www.youtube.com/runwiththedolphin
lenovo ThinkPad X1 Extreme Gen 4 - MX-23
FYI: mx "test" repo is not the same thing as debian testing repo.
lenovo ThinkPad X1 Extreme Gen 4 - MX-23
FYI: mx "test" repo is not the same thing as debian testing repo.
Re: Tuner up to Main
Yes, tint2 definitely can display svg icons.dolphin_oracle wrote: Fri Jul 29, 2022 8:56 am Can the tint2 panel show svg icons? I assume so but I don’t remember
I found that the 'com.github.louis77.tuner.svg' icons are actually available in the /usr/share/icons/Papirus/apps folders for sizes 16x16 24x24 48x48 ...
Maybe add a referral in the hicolor index.theme to the Papirus icons?
Sony Vaio VPCF23P (2011), Intel Core i7-2670, 6gb RAM, 240gb SSD, MX-Linux 23 based Fluxbox v/1.3.7+
Lenovo Thinkpad L560 (2016), Intel Core i5-6200, 16gb RAM, 240gb SSD, Devuan Daedalus based Fluxbox v/1.3.7+
Lenovo Thinkpad L560 (2016), Intel Core i5-6200, 16gb RAM, 240gb SSD, Devuan Daedalus based Fluxbox v/1.3.7+
- Nite Coder
- Developer
- Posts: 61
- Joined: Fri Dec 21, 2018 2:28 pm
Re: Tuner up to Main
So I created a fix in the repo: https://github.com/TheNiteCoder/tuner/tree/status-icon. The fix is fairly simple, I just add a systray icon that if clicked will open the window again. The only problem is the lack of systray icon is intentional as the Gtk.StatusIcon is deprecated and is removed in Gtk4. Here is a link to the thread on the gnome forums about why: https://discourse.gnome.org/t/what-to-u ... -tray/7175. The only problem we have on Xfce is the notification thing that Tuner does to replace the systray icon, doesn't seem to work with the Xfce4 Notifications Manager. I can open a pull request but I don't think the developer would want to merge this fix as it is using a deprecated feature.Jerry3904 wrote: Thu Jul 28, 2022 10:18 am I wish we could fork it and solve that systray problem, not sure who around here knows Vala.
Last edited by Nite Coder on Fri Jul 29, 2022 10:30 am, edited 1 time in total.
- pianokeyjoe
- Posts: 420
- Joined: Thu Jan 31, 2019 11:08 am
Re: Tuner up to Main
Yes, when I initially upgraded from 18.3 to 19.0 Deb-multimedia repo was available in the sources list of MX and I had enabled it. Also noticed that when you fetch the multimedia codecs and associated files the script in MX tools fetches these files from deb-multimedia.org. Now in my other newer installs of MX19.3 and 19.4 Deb-multimedia is not available anymore so not enabled but this is my main work computer so do not know how to install/upgrade to the latest gstreamer and plugins without borking my system and losing my files. I would need to live without listening to world music with that app and stick to youtube for now.timkb4cq wrote: Thu Jul 28, 2022 10:32 pm Thissuggests you have installed gstreamer from the deb-multimedia repos but not the libgstreamer-plugins-bad1.0-0 package. Dmo packages often create this sort of dependency issue which is why we don't recommend them or include that repo in our lists.Code: Select all
Depends: libgstreamer-plugins-bad1.0-0 (<1.15) but 1:1.14.4-dmo7 is to be installed
I just successfully installed Tuner from the Test repo using MXPI in my MX19 install. I can't reproduce the aforementioned zombie issue with it. I'll have to see what is different in MX21...
Pianokeyjoe
Intel i5 3.10ghz ,8GB ram, Intel onboard everything, 500GB HDD, MX-LINUX 19.3
Intel i5 3.10ghz ,8GB ram, Intel onboard everything, 500GB HDD, MX-LINUX 19.3

- dolphin_oracle
- Developer
- Posts: 22281
- Joined: Sun Dec 16, 2007 12:17 pm
Re: Tuner up to Main
hicolor is typically the lowest common denominator. I'm not having it pull from papirus. its normally the other way around.ceeslans wrote: Fri Jul 29, 2022 9:22 amYes, tint2 definitely can display svg icons.dolphin_oracle wrote: Fri Jul 29, 2022 8:56 am Can the tint2 panel show svg icons? I assume so but I don’t remember
I found that the 'com.github.louis77.tuner.svg' icons are actually available in the /usr/share/icons/Papirus/apps folders for sizes 16x16 24x24 48x48 ...
Maybe add a referral in the hicolor index.theme to the Papirus icons?
http://www.youtube.com/runwiththedolphin
lenovo ThinkPad X1 Extreme Gen 4 - MX-23
FYI: mx "test" repo is not the same thing as debian testing repo.
lenovo ThinkPad X1 Extreme Gen 4 - MX-23
FYI: mx "test" repo is not the same thing as debian testing repo.
Re: Tuner up to Main
If it was just the gstreamer packages you can use synaptic, select each gstreamer package (one at at time) and use Package -> Force version, selecting the non-dmo version of each, then when you've got them all, Apply. Tedious, but it does work.
It can also be done with aptitude.which will give you successive options of what it should do, one of which should downgrade all the gstreamer packages to 1.14.4 versions. It's seen as a downgrade because deb-multimedia added a 1: epoch to be seen as a higher version than any of the debian ones (1:1.14.4-dmo7 > 1.14.4-1).
It can also be done with aptitude.
Code: Select all
sudo aptitude install libgstreamer1.0-0=1.14.4-1
Last edited by timkb4cq on Fri Jul 29, 2022 10:50 am, edited 1 time in total.
HP Pavillion TP01, AMD Ryzen 3 5300G (quad core), Crucial 500GB SSD, Toshiba 6TB 7200rpm
Dell Inspiron 15, AMD Ryzen 7 2700u (quad core). Sabrent 500GB nvme, Seagate 1TB
Dell Inspiron 15, AMD Ryzen 7 2700u (quad core). Sabrent 500GB nvme, Seagate 1TB
Re: Tuner up to Main
Nice, thanks! I love the part where you say the fix is "fairly simple" ...Nite Coder wrote: Fri Jul 29, 2022 10:24 amSo I created a fix in the repo: https://github.com/TheNiteCoder/tuner/tree/status-icon. The fix is fairly simple, I just add a systray icon that if clicked will open the window again. The only problem is the lack of systray icon is intentional as the Gtk.StatusIcon is deprecated and is removed in Gtk4. Here is a link to the thread on the gnome forums about why: https://discourse.gnome.org/t/what-to-u ... -tray/7175. The only problem we have on Xfce is the notification thing that Tuner does to replace the systray icon, doesn't seem to work with the Xfce4 Notifications Manager. I can open a pull request but I don't think the developer would want to merge this fix as it is using a deprecated feature.Jerry3904 wrote: Thu Jul 28, 2022 10:18 am I wish we could fork it and solve that systray problem, not sure who around here knows Vala.
Production: 5.10, MX-23 Xfce, AMD FX-4130 Quad-Core, GeForce GT 630/PCIe/SSE2, 16 GB, SSD 120 GB, Data 1TB
Personal: Lenovo X1 Carbon with MX-23 Fluxbox
Other: Raspberry Pi 5 with MX-23 Xfce Raspberry Pi Respin
Personal: Lenovo X1 Carbon with MX-23 Fluxbox
Other: Raspberry Pi 5 with MX-23 Xfce Raspberry Pi Respin
- dolphin_oracle
- Developer
- Posts: 22281
- Joined: Sun Dec 16, 2007 12:17 pm
Re: Tuner up to Main
@Nite Coder how is that extra systray icon different from an entry in the tasklist?
http://www.youtube.com/runwiththedolphin
lenovo ThinkPad X1 Extreme Gen 4 - MX-23
FYI: mx "test" repo is not the same thing as debian testing repo.
lenovo ThinkPad X1 Extreme Gen 4 - MX-23
FYI: mx "test" repo is not the same thing as debian testing repo.
- dolphin_oracle
- Developer
- Posts: 22281
- Joined: Sun Dec 16, 2007 12:17 pm
Re: Tuner up to Main
pertaining tot he missing icon in the tint2 tasklist, I suspect the problem is probably more related to the app not explicitly setting an icon to be display by the window. At least, I couldn't find where it was set if it is.
http://www.youtube.com/runwiththedolphin
lenovo ThinkPad X1 Extreme Gen 4 - MX-23
FYI: mx "test" repo is not the same thing as debian testing repo.
lenovo ThinkPad X1 Extreme Gen 4 - MX-23
FYI: mx "test" repo is not the same thing as debian testing repo.