init at home

This commit is contained in:
2026-03-27 12:41:00 +01:00
commit 352c352056
58 changed files with 13083 additions and 0 deletions
@@ -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
```