merging and cleaning up

This commit is contained in:
Mathias Schneider
2026-03-27 13:14:52 +01:00
parent 4eb84a28af
commit 82d7e0e888
62 changed files with 6 additions and 386 deletions
+23
View File
@@ -0,0 +1,23 @@
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
```