Expand description

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

let recently_used = match recently_used_xbel::parse_file()?;

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

Structs

A file that was recently opened by the desktop user.

Stores recently-opened files accessed by the desktop user.

Enums

An error that can occur when accessing recently-used files.

Functions

The path where the recently-used.xbel file is expected to be found.

Convenience function for parsing the recently-used.xbel file in its default location.