shell-things/local/share/applications/README.md

62 lines
1.9 KiB
Markdown
Raw Normal View History

2024-07-03 18:08:14 +02:00
<!-- @format -->
# Custom app menu entries
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.
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)
- [Default applications](#default-applications)
<!-- END doctoc generated TOC please keep comment here to allow auto update -->
<!-- prettier-ignore-end -->
<!-- editorconfig-checker-enable -->
## `a-*.desktop`
These files are companions to my script repos `bash/usr-local-bin/*` belonging
2024-07-03 18:08:14 +02:00
to `/usr/local/share/applications` and are named so to avoid masking package
manager. They have clearly different names such as using all caps.
2024-07-03 18:08:14 +02:00
Apparently one can also have subdirectories in
`/usr/local/share/applications/` and `~/.local/share/applications/` making
life easier.
## Refreshing the menus
```bash
update-desktop-database -v ~/.local/share/applications
sudo update-desktop-database -v /usr/local/share/applications
```
## Default applications
[Codium documentation](https://github.com/VSCodium/vscodium/blob/1.89.1.24130/docs/index.md#how-do-i-fix-the-default-file-manager-linux)
points out the existence of `~/.config/mimeapps.list` and gives these two
examples:
```toml
[Default Applications]
inode/directory=org.gnome.Nautilus.desktop;
```
```bash
% grep directory /usr/share/applications/mimeinfo.cache
2024-06-06 19:38:36 +02:00
inode/directory=codium.desktop
org.gnome.Nautilus.desktop
```
TODO: I wonder if it needs an `update-desktop-database` or similar though.