mirror of
https://github.com/danbulant/icon
synced 2026-05-19 04:08:36 +00:00
305 B
305 B
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.