# Icon dictionary for NerdFont glyphs declare -A icons=( ["code"]="󱃖 " # Code icon ["git"]="󰊢 " # Git icon ["docs"]=" " # Docs icon ["web"]="󰖟 " # Web icon ["music"]=" " # Music icon ["bug"]=" " # Bug icon ["info"]=" " # Info icon ["question"]=" " # Question icon ["warning"]=" " # Warning icon ["error"]=" " # Error icon ["folder"]=" " # Folder icon ["file"]=" " # File icon ["lock"]=" " # Lock icon ["unlock"]=" " # Unlock icon ["key"]=" " # Key icon ["search"]=" " # Search icon ["clock"]=" " # Clock icon ["calendar"]=" " # Calendar icon ["download"]=" " # Download icon ["vim"]=" " # Vim icon ["nvim"]=" " # Neovim icon ["neovim"]=" " # Neovim icon ["python"]=" " # Python icon ["shell"]=" " # Shell icon ["rust"]=" " # Rust icon ["go"]=" " # Go icon ["java"]=" " # Java icon ["lua"]=" " # Lua icon ["cat"]="󰄛 " # Cat icon ["dog"]="󰩄 " # Dog icon ["fish"]="󰈺 " # Fish icon ["cow"]="󰆚 " # Cow icon ["bird"]="󱗆 " # Bird icon ["config"]=" " # Config icon ["home"]=" " # Home icon ["game"]=" " # Game icon ["image"]=" " # Image icon ["video"]=" " # Video icon ["pdf"]=" " # PDF icon ["music2"]=" " # Music2 icon ["archive"]=" " # Archive icon ["heart"]=" " # Heart icon ["md"]="󰍔 " # MarkDown icon ["apple"]=" " # Apple icon ["mac"]=" " # Apple icon ["google"]=" " # Google icon ["microsoft"]=" " # Microsoft icon ["ms"]=" " # Microsoft icon ["windows"]=" " # Windows icon ["slack"]=" " # Slack icon ["linux"]=" " # Linux icon ["ubuntu"]="󰕈 " # Linux icon ["archlinux"]=" " # ArchLinux icon ["arch"]=" " # ArchLinux icon ["debian"]=" " # Debian icon ["fedora"]=" " # Fedora icon ["freebsd"]=" " # FreeBSD icon ["gentoo"]=" " # Gentoo icon ["manjaro"]=" " # Manjaro icon ["nixos"]=" " # NixOS icon ["opensuse"]=" " # OpenSUSE icon ["suse"]=" " # OpenSUSE icon ["redhat"]="󱄛 " # RedHat icon ["centos"]="󱄛 " # RedHat icon ["endeavoros"]=" " # EndeavorOS icon ["endeavor"]=" " # EndeavorOS icon ["eos"]=" " # EndeavorOS icon ["github"]=" " # GitHub icon ["gh"]=" " # GitHub icon ["youtube"]=" " # YouTube icon ["yt"]=" " # YouTube icon ["poop"]="󰇷 " # Poop icon ["sun"]="󰖙 " # Sun icon ["moon"]=" " # Moon icon ["rain"]=" " # Rain icon ["cloud"]=" " # Cloud icon ["alien"]="󰢚 " # Alien icon ["lightbulb"]=" " # Lightbulb icon ["lightning"]=" " # Lightning icon ["night"]=" " # Night icon ["day"]=" " # Day icon ["chat"]="󰭹 " # Chat icon ["mail"]=" " # Mail icon ["terminal"]=" " # Terminal icon ["sleep"]=" " # Sleep icon ["bed"]=" " # Sleep icon ["note"]=" " # Note icon ["notes"]=" " # Note icon ["fire"]=" " # Fire icon ["trash"]=" " # Trash icon ["garbage"]=" " # Trash icon ["trashcan"]=" " # Trash icon ["recycle"]=" " # Trash icon ["water"]="󰖌 " # Water icon ["beer"]=" " # Beer icon ["coffee"]=" " # Coffee icon ["cake"]="󰃩 " # Cake icon ["package"]=" " # Package icon ["inbox"]=" " # Inbox icon ["outbox"]=" " # Outbox icon ["scissors"]=" " # Scissors icon ["stats"]=" " # Stats icon ["database"]=" " # Database icon ["link"]=" " # Link icon ["flag"]=" " # Flag icon ["pizza"]=" " # Pizza icon ["burger"]="󰚅 " # Burger icon ["success"]=" " # Success icon ["fail"]=" " # Fail icon ["warn"]=" " # Warn icon ["alert"]=" " # Warn icon ["car"]=" " # Car icon ["bicycle"]="󰂣 " # Bicycle icon ["bike"]="󰂣 " # Bicycle icon ["airplane"]=" " # Airplane icon ["plane"]=" " # Airplane icon ["boat"]="󰻈 " # Boat icon ["sailboat"]="󰻈 " # Boat icon ["ship"]=" " # Ship icon ["shipit"]=" " # Ship icon ["train"]=" " # Train icon ["subway"]=" " # Subway icon ["bus"]=" " # Bus icon ["motorbike"]=" " # Motorcycle icon ["motorcycle"]=" " # Motorcycle icon ["truck"]=" " # Truck icon ["rocket"]="󱓞 " # Rocket icon ["helicopter"]="󰫂 " # Helicopter icon ["anchor"]=" " # Anchor icon ["planet"]=" " # Planet icon ["map"]=" " # Map icon ["brain"]="󰧑 " # Brain icon ["heartbeat"]=" " # heartbeat icon ["paw"]=" " # Paw icon ["eye"]=" " # Eye icon ["eye-opened"]=" " # Eye icon ["eye-open"]=" " # Eye icon ["eye-off"]=" " # Eye-off icon ["eye-slash"]=" " # Eye-off icon ["eye-closed"]=" " # Eye-off icon ["eye-close"]=" " # Eye-off icon ["feather"]="󰛓 " # Feather icon ["pencil"]=" " # Pencil icon ["pen"]="󰏪 " # Pen icon ["paint"]=" " # Paint icon ["smoke"]="󱞙 " # Smoke icon ["fireplace"]="󰸮 " # Fireplace icon ["yes"]=" " # Yes icon ["no"]=" " # No icon ["on"]=" " # On icon ["off"]=" " # Off icon ) # Export the dictionary if needed export icons