No description
Find a file
2025-09-20 00:05:03 +02:00
resources Add theme/index parsing 2025-06-07 04:15:52 +02:00
src simply symlink handling 2025-09-20 00:05:03 +02:00
.gitignore Add Cargo.toml and gitignore 2025-06-15 17:55:10 +02:00
Cargo.lock Bump version 2025-06-24 18:03:43 +02:00
Cargo.toml Bump version 2025-06-24 18:03:43 +02:00
LICENSE-APACHE Add license and README 2025-06-21 13:41:22 +02:00
LICENSE-MIT Add license and README 2025-06-21 13:41:22 +02:00
README.md Add license and README 2025-06-21 13:41:22 +02:00

icon

Reality-compliant rust crate to find icons on linux with ease.

Quickstart

cargo add icon

Using the default configuration (should suit most usecases):

use icon::Icons;

let icons = Icons::new();
let firefox = icons.find_default_icon("firefox", 64, 1);

It's as easy as that.