I want to get the entry of Name= and Exec= from a .desktop file.
Usually I'm doing it using the commands below:
Code: Select all
MENUPROGNAME=$(grep "^Name=" $MENUTMPLT|sed 's/\Name=//')
Code: Select all
MENUPROGNAME=$(grep "^Exec=" $MENUTMPLT|sed 's/\Exec=//')
Now I have a problem with some .desktop files, as there's multiple Name= and Exec= entries included.
Code: Select all
[Desktop Entry]
Version=1.0
Type=Application
Name=Stellarium
Name[af]=Stellarium
... snippet...
#Exec=stellarium --startup-script=%f
Exec=stellarium
Icon=stellarium
StartupNotify=false
Terminal=false
Categories=Astronomy;Education;Science;
Comment=Planetarium
Comment[af]=Planetarium
Comment[ar]=قبة سماوية
[Desktop Action Window]
Name=Open in window
Name[af]=Maak in 'n nuwe skerm oop
... snippet...
Exec=stellarium -f no
[Desktop Action Fullscreen]
Name=Open in fullscreen
Name[af]=Maak in 'n volskerm oop
... snippet...
Exec=stellarium -f yes
[Desktop Action Debugmode]
Name=Open in debug mode
Name[af]=Open in ontfout wyse
... snippet...
Exec=stellarium --dump-opengl-details
How could I achieve this using shell script commands?
Thanks.