recently-used-xbel

Parse the ~/.local/share/recently-used.xbel file

2 stable releases

1.1.0 Aug 26, 2024
1.0.0 Mar 27, 2022
Download history 564/week @ 2024-06-27 570/week @ 2024-07-04 719/week @ 2024-07-11 767/week @ 2024-07-18 1136/week @ 2024-07-25 686/week @ 2024-08-01 1671/week @ 2024-08-08 688/week @ 2024-08-15 560/week @ 2024-08-22 353/week @ 2024-08-29 409/week @ 2024-09-05 1156/week @ 2024-09-12 1043/week @ 2024-09-19 1342/week @ 2024-09-26 1095/week @ 2024-10-03 796/week @ 2024-10-10

4,425 downloads per month
Used in 2 crates (via onagre-launcher-plugins)

MPL-2.0 license

20KB
326 lines

recently-used-xbel

Rust crate for reading the contents of ${HOME}/.local/share/recently-used.xbel.

fn main() -> Result<(), Box<dyn std::error::Error>> {
    let recently_used = recently_used_xbel::parse_file()?;

    for bookmark in recently_used.bookmarks {
        println!("{:#?}", bookmark);
    }

    Ok(())
}

License

Licensed under the Mozilla Public License 2.0. Permissions of this copyleft license are conditioned on making available source code of licensed files and modifications of those files under the same license (or in certain cases, one of the GNU licenses). Copyright and license notices must be preserved. Contributors provide an express grant of patent rights. However, a larger work using the licensed work may be distributed under different terms and without source code for files added in the larger work.

Contribution

Any contribution intentionally submitted for inclusion in the work by you shall be licensed under the Mozilla Public License 2.0 (MPL-2.0). It is required to add a boilerplate copyright notice to the top of each file:

// Copyright {year} {person OR org} <{email}>
// SPDX-License-Identifier: MPL-2.0

Dependencies

~4–15MB
~149K SLoC