Update README for format::desktop_entry, xdg::desktop_entry

This commit is contained in:
Sasha Koshka 2024-10-22 17:53:30 -04:00
parent 69eaf63fe8
commit 9ede109998
2 changed files with 11 additions and 12 deletions

View File

@ -1,12 +1,8 @@
The desktop_entry module implements the XDG Desktop Entry Specification as The desktop_entry module implements the basic format used by the XDG Desktop
described in (https://specifications.freedesktop.org/desktop-entry-spec/latest). Entry Specification as described in
Since other specifications make use of the basic desktop entry format (but with (https://specifications.freedesktop.org/desktop-entry-spec/latest). Since other
different group names, entry requirements, etc.), this module implements: specifications make use of the basic desktop entry format (but with different
group names, entry requirements, etc.), this module only implements the
1. The generalized format, and generalized format. This module will attempt to accept malformed files for the
2. A second processing stage to retrieve values relevant to desktop entries and purposes of retaining their underlying representation, and being able to
to validate them. reproduce that representation when writing updated information to the files.
This module will attempt to accept malformed files for the purposes of retaining
their underlying representation, and being able to reproduce that representation
when writing updated information to the files.

3
xdg/desktop_entry/README Normal file
View File

@ -0,0 +1,3 @@
The desktop_entry module implements the XDG Desktop Entry Specification as
described in (https://specifications.freedesktop.org/desktop-entry-spec/latest).
For the generalized format, see [[format::desktop_entry]].