Tuner up to Main

Message
Author
User avatar
fehlix
Developer
Posts: 12714
Joined: Wed Apr 11, 2018 5:09 pm

Re: Tuner up to Main

#11 Post by fehlix »

Just added tuner to the tint panel which shows the svg icon. may be you are trying something else.

User avatar
dolphin_oracle
Developer
Posts: 22286
Joined: Sun Dec 16, 2007 12:17 pm

Re: Tuner up to Main

#12 Post by dolphin_oracle »

Nevermind

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.

User avatar
ceeslans
Posts: 829
Joined: Sun Apr 14, 2019 3:48 am

Re: Tuner up to Main

#13 Post by ceeslans »

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
Yes, tint2 definitely can display svg icons.
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+

User avatar
Nite Coder
Developer
Posts: 61
Joined: Fri Dec 21, 2018 2:28 pm

Re: Tuner up to Main

#14 Post by Nite Coder »

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.
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.
Last edited by Nite Coder on Fri Jul 29, 2022 10:30 am, edited 1 time in total.

User avatar
pianokeyjoe
Posts: 420
Joined: Thu Jan 31, 2019 11:08 am

Re: Tuner up to Main

#15 Post by pianokeyjoe »

timkb4cq wrote: Thu Jul 28, 2022 10:32 pm This

Code: Select all

Depends: libgstreamer-plugins-bad1.0-0 (<1.15) but 1:1.14.4-dmo7 is to be installed
suggests 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.

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...
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.
Pianokeyjoe
Intel i5 3.10ghz ,8GB ram, Intel onboard everything, 500GB HDD, MX-LINUX 19.3 :penguin:

User avatar
dolphin_oracle
Developer
Posts: 22286
Joined: Sun Dec 16, 2007 12:17 pm

Re: Tuner up to Main

#16 Post by dolphin_oracle »

ceeslans wrote: Fri Jul 29, 2022 9:22 am
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
Yes, tint2 definitely can display svg icons.
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?
hicolor is typically the lowest common denominator. I'm not having it pull from papirus. its normally the other way around.
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.

User avatar
timkb4cq
Developer
Posts: 3589
Joined: Wed Jul 12, 2006 4:05 pm

Re: Tuner up to Main

#17 Post by timkb4cq »

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.

Code: Select all

sudo aptitude install libgstreamer1.0-0=1.14.4-1
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).
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

User avatar
Jerry3904
Administrator
Posts: 23226
Joined: Wed Jul 19, 2006 6:13 am

Re: Tuner up to Main

#18 Post by Jerry3904 »

Nite Coder wrote: Fri Jul 29, 2022 10:24 am
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.
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.
Nice, thanks! I love the part where you say the fix is "fairly simple" ...
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

User avatar
dolphin_oracle
Developer
Posts: 22286
Joined: Sun Dec 16, 2007 12:17 pm

Re: Tuner up to Main

#19 Post by dolphin_oracle »

@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.

User avatar
dolphin_oracle
Developer
Posts: 22286
Joined: Sun Dec 16, 2007 12:17 pm

Re: Tuner up to Main

#20 Post by dolphin_oracle »

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.

Post Reply

Return to “Package Requests - MX-21”