2024-04-20 10:59:43 +02:00
|
|
|
# Custom app menu entries
|
2024-04-20 10:18:33 +02:00
|
|
|
|
2024-04-20 10:59:43 +02:00
|
|
|
These can be used for either `~/.local/share/applications` or
|
|
|
|
`/usr/local/share/applications` which are read by graphical desktop
|
|
|
|
environments for their app menus and default applications selections.
|
2024-04-20 10:18:33 +02:00
|
|
|
|
2024-04-20 10:59:43 +02:00
|
|
|
Additionally `~/.config/autostart` or `/etc/xdg/autostart` could symlink here
|
|
|
|
so graphical desktop environments started the apps on login.
|
|
|
|
|
|
|
|
<!-- editorconfig-checker-disable -->
|
|
|
|
<!-- prettier-ignore-start -->
|
|
|
|
|
|
|
|
<!-- START doctoc generated TOC please keep comment here to allow auto update -->
|
|
|
|
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
|
|
|
|
|
|
|
|
- [`a-*.desktop`](#a-desktop)
|
|
|
|
- [Refreshing the menus](#refreshing-the-menus)
|
|
|
|
|
|
|
|
<!-- END doctoc generated TOC please keep comment here to allow auto update -->
|
|
|
|
|
|
|
|
<!-- prettier-ignore-end -->
|
|
|
|
<!-- editorconfig-checker-enable -->
|
2024-04-20 10:18:33 +02:00
|
|
|
|
|
|
|
## `a-*.desktop`
|
|
|
|
|
|
|
|
These files are companions to my script repos `bash/usr-local-bin/*` belonging
|
|
|
|
to `/usr/local/share/applications` and are named so to
|
|
|
|
avoid masking package manager. They have clearly different names such as using
|
2024-04-20 10:59:43 +02:00
|
|
|
all caps.
|
|
|
|
|
|
|
|
## Refreshing the menus
|
2024-04-20 10:18:33 +02:00
|
|
|
|
|
|
|
```bash
|
2024-04-20 10:59:43 +02:00
|
|
|
update-desktop-database -v ~/.local/share/applications
|
2024-04-20 10:18:33 +02:00
|
|
|
sudo update-desktop-database -v /usr/local/share/applications
|
|
|
|
```
|