blob: d075ef3217b477843c2c3a2cda4b3eb9e19f5f34 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
Step 1: A trivial application
To make gnome-shell use the desktop file and icon for this example
while running it uninstalled, do the following:
mkdir -p ~/.local/share/applications
sed -e "s#@bindir@#$PWD#" org.gtk.exampleapp.desktop \
> ~/.local/share/applications/org.gtk.exampleapp.desktop
mkdir -p ~/.local/share/icons/hicolor/48x48/apps
cp exampleapp.png ~/.local/share/icons/hicolor/48x48/apps
|