Thu Nov 21 12:35:14 PM EST 2024

This commit is contained in:
Silas Bartha 2024-11-21 12:35:14 -05:00
commit 7539914ba8
Signed by: soaos
GPG Key ID: 9BD3DCC0D56A09B2
3 changed files with 75 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
/target

7
Cargo.toml Normal file
View File

@ -0,0 +1,7 @@
[package]
name = "filetype_fonticons"
version = "0.1.0"
edition = "2021"
[dependencies]
lazy_static = "1.5.0"

67
src/lib.rs Normal file
View File

@ -0,0 +1,67 @@
use lazy_static::lazy_static;
use std::collections::HashMap;
#[derive(Debug, Clone, Copy)]
pub struct FileIcon {
pub icon: char,
pub color: u32,
}
impl Default for FileIcon {
fn default() -> Self {
Self {
icon: '',
color: 0xFFFFFF,
}
}
}
lazy_static! {
pub static ref ICONS_BY_EXTENSION: HashMap<&'static str, FileIcon> = HashMap::from([
(
"glb",
FileIcon {
icon: '󰆧',
color: 0x87C63E,
}
),
(
"gltf",
FileIcon {
icon: '󰆧',
color: 0x87C63E,
}
),
(
"png",
FileIcon {
icon: '',
color: 0xA074C4,
}
),
(
"rs",
FileIcon {
icon: '',
color: 0xDEA584,
}
),
( "mid",
FileIcon {
icon: '󰎇',
color: 0x800080,
}
),
( "wav",
FileIcon {
icon: '󱑽',
color: 0xF74231,
}
)
]);
}
pub const FOLDER_ICON: FileIcon = FileIcon {
icon: '',
color: 0xFFFFFF,
};