![]() |
Whisker menu reads Desktop files from /etc/skel/.local/share/applications - Printable Version +- Linux Lite Forums (https://www.linuxliteos.com/forums) +-- Forum: General (https://www.linuxliteos.com/forums/forumdisplay.php?fid=4) +--- Forum: On Topic (https://www.linuxliteos.com/forums/forumdisplay.php?fid=14) +--- Thread: Whisker menu reads Desktop files from /etc/skel/.local/share/applications (/showthread.php?tid=1552) |
Whisker menu reads Desktop files from /etc/skel/.local/share/applications - anon222 - 02-18-2015 The /etc/skel directory contains files and directories that are automatically copied over to a new user's Home directory when such user is created by the useradd program. A home directory, also called a login directory, is the directory on LL that serves as the repository for a user's personal files, directories and programs, including personal configuration files. Here is what happened:
Code: Icon=/usr/share/pixmaps/enable.png Code: Icon=/usr/share/pixmaps/disable.png
Code: dbus-send --print-reply --dest=org.xfce.Panel /org/xfce/Panel org.xfce.Panel.Terminate boolean:true I remember there was a couple threads where the users claimed they can't remove items from the whisker menu. This is related to that. So something is wrong in the configuration, and that is this file /home/misko/.config/menus/xfce-applications.menu Code: grep "/etc/skel" $HOME/.config/menus/xfce-applications.menu Next command will change all occurances of /etc/skel to /home/user_name Code: sed -i 's!/etc/skel!'$HOME'!g' $HOME/.config/menus/xfce-applications.menu Code: dbus-send --print-reply --dest=org.xfce.Panel /org/xfce/Panel org.xfce.Panel.Terminate boolean:true Code: grep "/home" $HOME/.config/menus/xfce-applications.menu |