#freedesktop #icons #linux

freedesktop_entry_parser

A library for parsing FreeDesktop entry files

11 releases (6 stable)

1.3.0 Feb 3, 2022
1.2.0 Jul 30, 2021
1.1.2 May 7, 2021
1.1.1 Nov 8, 2020
0.2.0 Mar 27, 2020

#183 in Unix APIs

Download history 1506/week @ 2023-11-20 1285/week @ 2023-11-27 1296/week @ 2023-12-04 1362/week @ 2023-12-11 1622/week @ 2023-12-18 967/week @ 2023-12-25 1118/week @ 2024-01-01 1335/week @ 2024-01-08 1502/week @ 2024-01-15 1685/week @ 2024-01-22 1991/week @ 2024-01-29 1651/week @ 2024-02-05 1593/week @ 2024-02-12 2020/week @ 2024-02-19 1638/week @ 2024-02-26 1930/week @ 2024-03-04

7,336 downloads per month
Used in 15 crates (11 directly)

MPL-2.0 license

39KB
824 lines

Freedesktop Entry Parser

crates.io docs.rs Minimum Supported Rust Version

A library for parsing FreeDesktop entry files in Rust. These files are used in the Desktop Entry, Icon Theme, and Systemd Unit file. They are similar to ini files but are distinct enough that an ini parse would not work.

Example Usage

As example input lets use the contents of sshd.service

[Unit]
Description=OpenSSH Daemon
Wants=sshdgenkeys.service
After=sshdgenkeys.service
After=network.target

[Service]
ExecStart=/usr/bin/sshd -D
ExecReload=/bin/kill -HUP $MAINPID
KillMode=process
Restart=always

[Install]
WantedBy=multi-user.target

For example, to print the start command we could do this:

use freedesktop_entry_parser::parse_entry;

let entry = parse_entry("./test_data/sshd.service")?;
let start_cmd = entry
    .section("Service")
    .attr("ExecStart")
    .expect("Attribute doesn't exist");
println!("{}", start_cmd);

This prints /usr/bin/sshd -D

For more extensive documentation see docs.rs or generate the docs yourself by cloning the repo and running cargo doc. For more examples see the examples in the repo.

MSRV Policy

The current minimum support rustc version is specified above in this readme. We reserve the right to change this on minor version increases, but we will try to keep it reasonable. Given that this library is feature complete, the MSVR will likely only change with our dependencies.

Contributing

Please send any and all patches, bugs, and questions to my public inbox ~zethra/public-inbox@lists.sr.ht or submit a ticket to the bug tracker if you feel so inclined todo.sr.ht/~zethra/linicon.

Dependencies

~1.1–1.8MB
~36K SLoC