24 lines
564 B
Markdown
24 lines
564 B
Markdown
Für Integration von Programmen ins Startmenü
|
|
Lege Datei `some_awesome_app.desktop` mit folgendem Inhalt:
|
|
```bash
|
|
[Desktop Entry]
|
|
Name=Name of Application
|
|
GenericName=Super generic Name
|
|
Comment=This is an awesome application
|
|
Exec=/path/to/executable
|
|
Icon=/path/to/icon
|
|
Type=Application
|
|
Terminal=false
|
|
Categories=Utility;Application;
|
|
```
|
|
|
|
- Für aktuellen Nutzer: `~/.local/share/applications`
|
|
- Systemweit (`sudo` beim Anlegen nicht vergessen): `/usr/share/applications`
|
|
## Weitere Felder
|
|
```bash
|
|
# ...
|
|
Encoding=UTF-8
|
|
Version=1.0
|
|
StartupWMClass=ExampleApp
|
|
```
|