Desktop Entry icon not appearing: how to diagnose? - Printable Version +- PINE64 (https://forum.pine64.org) +-- Forum: PinePhone (https://forum.pine64.org/forumdisplay.php?fid=120) +--- Forum: PinePhone Software (https://forum.pine64.org/forumdisplay.php?fid=121) +---- Forum: Mobian on PinePhone (https://forum.pine64.org/forumdisplay.php?fid=139) +---- Thread: Desktop Entry icon not appearing: how to diagnose? (/showthread.php?tid=11431) |
Desktop Entry icon not appearing: how to diagnose? - Saliency - 09-13-2020 Hi, I am trying to get icons to appear in the launcher, but none are appearing given my desktop entry files in .local/share/applications. Is there any way to diagnose what the problem is? Any way to see some error messages or logs? RE: Desktop Entry icon not appearing: how to diagnose? - zlmk43qK2 - 03-14-2021 (09-13-2020, 10:30 PM)Saliency Wrote: Hi,Hey guys, Im having the same problem. If i create .desktop files in .local/share/applications they do not show up on the 'desktop.' Did u manage to resolve this @Saliency ? Anyone else have any suggestions as to what might be the cause of this. Thanks in advance. RE: Desktop Entry icon not appearing: how to diagnose? - bosi564 - 03-14-2021 Try looking at this example : https://source.puri.sm/Librem5/example-apps/first-application. I've successfully installed the example program and an icon did appear. I guess it should be easy to execute the commands manually and show normal programs and icons. RE: Desktop Entry icon not appearing: how to diagnose? - C0ffeeFreak - 03-14-2021 (03-14-2021, 04:13 AM)zlmk43qK2 Wrote:How are you creating your .desktop file? It really has to be done in the terminal in root using something like Vim and you should be in the directory /usr/share/applications when you create it. Many new people to linux don't understand how to use the terminal and how it's commands work, they try to use notes or text editor GUI to create a .desktop file and copy and past it into the directory /usr/share/applications/ via the CP command in the terminal but all that does is create a shortcut to the original file. Do you understand the commands for Vim? I will try to explain it if you don't. Past your .desktop file entry into the thread here and I will see if everything is there. Forgive me if I am a little slow to respond I am spending my day with family.(09-13-2020, 10:30 PM)Saliency Wrote: Hi,Hey guys, RE: Desktop Entry icon not appearing: how to diagnose? - zlmk43qK2 - 03-14-2021 I know how to work with the CLI. I know how to use vim. I just copied the .desktop contents from this post: http://forum.pine64.org/showthread.php?tid=13383. Initially i tried putting the .desktop file in ~/.local/share/applications, to no avail. Then i tried putting it in /usr/share/applications with the same result. Initially, I made the .desktop file executable with Code: sudo chmod +x ~/.local/share/applications/themeswitcher.desktop Code: sudo chmod 644 dark-light.desktop to reverse the previous command. Unfortunately, this didn't make a difference either. here is are the ownership, permissions, location and content. Code: mobian@mobian:/usr/share/applications$ la -l | grep dark RE: Desktop Entry icon not appearing: how to diagnose? - C0ffeeFreak - 03-14-2021 (03-14-2021, 03:02 PM)zlmk43qK2 Wrote: I know how to work with the CLI. I know how to use vim. I just copied the .desktop contents from this post: http://forum.pine64.org/showthread.php?tid=13383. There is too much information in there. It needs to start with [Desktop Entry] to create the symbolic link. Also looking at your code I see no reference as to the GTK gnome themes you are going to switch between. It has to be two of the ones installed like in the code provided. There is about 5 themes in on my device but I don't remember the directory. I would just do it with Vim. I will walk you through it. Open Terminal $ cd /usr/share/applications/ to navigate to the directory $ ls to see the contents to make sure you are in the right place # sudo vi themeswitcher.desktop (Or the name you named your program) It will create your .desktop file. Type :i It will put the file in insert mode (you will see insert at the bottom) Copy and paste or enter this. You can edit the themes to the ones you are using if it's nit the ones in here in the file but they have to be themes installed. Code: [Desktop Entry] Check everything over really well. Hit the Esc will get you out of the insert mode. Type :wq this will save and close the file to the directory If you need to edit the themeswitcher.desktop file to change your themes, navigate back to the directory # sudo vi themeswitcher.desktop will open it in root :i --> To edit. Esc --> to stop insert. :w --> To save file. :q --> To exit file. :wq --> To save and quit file. :q! --> To exit file without saving . If I helped you hit with a +1 in the ratings please? It makes up for the lousy pay they pay me here. RE: Desktop Entry icon not appearing: how to diagnose? - kqlnut - 03-15-2021 (03-14-2021, 03:02 PM)zlmk43qK2 Wrote: here is are the ownership, permissions, location and content.Seems like you just didn't notice that the code window in the thread you copied the code from is scrollable and there is more code below. I also didn't notice it when I first looked at it because the scroll bar only appeared when I tried to scroll. |