| Crates.io | freedesktop-icons |
| lib.rs | freedesktop-icons |
| version | 0.4.0 |
| created_at | 2022-05-13 09:30:41.473644+00 |
| updated_at | 2025-04-16 07:01:41.092999+00 |
| description | A Freedesktop Icons lookup crate |
| homepage | |
| repository | https://github.com/oknozor/freedestkop-icons |
| max_upload_size | |
| id | 585733 |
| size | 84,728 |
This crate provides a freedesktop icon lookup implementation.
It exposes a single lookup function to find icons based on their name, theme, size and scale.
Simple lookup:
The following snippet get an icon from the default 'hicolor' theme
with the default scale (1) and the default size (24).
use freedesktop_icons::lookup;
let icon = lookup("firefox").find();
Complex lookup:
If you have specific requirements for your lookup you can use the provided builder functions:
use freedesktop_icons::lookup;
let icon = lookup("firefox")
.with_size(48)
.with_scale(2)
.with_theme("Arc")
.find();
Cache:
If your application is going to repeat the same icon lookups multiple times you can use the internal cache to improve performance.
use freedesktop_icons::lookup;
let icon = lookup("firefox")
.with_size(48)
.with_scale(2)
.with_theme("Arc")
.with_cache()
.find();