README.txt 853 B

1234567891011121314151617181920
  1. This directory (/etc/qubes/applications) is used to override parts of files in
  2. /usr/share/applications and other applications directories.
  3. For each desktop file there, you can create directory named after the file plus
  4. ".d", then place files there. All such files will be read (in lexicographical
  5. order) and lines specified there will override respective entries in the
  6. original file.
  7. This can be used for example to override behaviour of a specific application in
  8. particular VM type.
  9. For example, you can extend `/usr/share/applications/firefox.desktop` by
  10. creating `/etc/qubes/applications/firefox.desktop.d/50_user.conf` with:
  11. ```
  12. [Desktop Entry]
  13. Exec=firefox --private-window http://example.com %u
  14. ```
  15. This would mean that `Exec` key would be read as your command line, regardless
  16. of original entry in `/usr/share/applications/firefox.desktop`.