mirror of
https://github.com/danbulant/icon
synced 2026-05-19 12:18:57 +00:00
No description
| resources | ||
| src | ||
| .gitignore | ||
| Cargo.lock | ||
| Cargo.toml | ||
| LICENSE-APACHE | ||
| LICENSE-MIT | ||
| README.md | ||
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.