2 releases

0.1.1 Dec 8, 2025
0.1.0 Nov 24, 2025

#2264 in Parser implementations

Apache-2.0

53KB
1K SLoC

desktop-edit

A lossless parser and editor for .desktop files as specified by freedesktop.org Desktop Entry Specification.

This library preserves all whitespace, comments, and formatting while providing a structured way to read and modify .desktop files.

Features

  • Lossless parsing: All whitespace, comments, and formatting are preserved
  • FreeDesktop .desktop file support: Full support for the freedesktop.org Desktop Entry specification
  • Locale support: Handle localized keys like Name[de]=...

Example

use desktop_edit::Desktop;
use std::str::FromStr;

# let input = r#"[Desktop Entry]
# Name=Example Application
# Type=Application
# Exec=example
# Icon=example.png
# "#;
# let desktop = Desktop::from_str(input).unwrap();
# assert_eq!(desktop.groups().count(), 1);
# let group = desktop.groups().nth(0).unwrap();
# assert_eq!(group.name(), Some("Desktop Entry".to_string()));

License

Apache-2.0

Dependencies

~1MB
~15K SLoC