Relm4 icons - Icons for your Relm4 and gtk-rs applications!

CI Matrix Relm4 icons on crates.io Relm4 icons docs Minimum Rust version 1.65 dependency status

More than 2500 icons, ready for use in your app!

Usage

1. Find your icons 🔍

Use one of the following methods:

For icons from the GNOME icon-development-kit: + Install Icon library + Browse the GNOME icon resource

For icons from Fluent UI System Icons + Browse the fluent icon library catalog

For browsing all icons: + Use the icon previews provided by in this repo: 16x16, 32x32 and 64x64 + Search the Rust documentation which also includes icon previews

2. Get relm4-icons ✍

For each icon you want to use, you can add a feature flag. Only the icons you specify will be compiled into your application.

toml relm4-icons = { version = "0.6.0-beta.6", features = ["<icon1>", "<icon2>", "<icon3>..."] }

Example

To enable the plus and minus icons use:

toml relm4-icons = { version = "0.6.0-beta.6", features = ["plus", "minus"] }

The file ending -symbolic.svg isn't part of the icon name.

3. Load the icons 🛫

Add this somewhere in your initialization code (after initializing RelmApp or GTK).

rust relm4_icons::initialize_icons();

4. Use the icons 🎉

Use set_icon_name and similar methods to use your icons, for example with ButtonExt, StackPage, MenuButton or Image.

Example

rust let button = gtk::Button::default(); button.set_icon_name("plus");

You can also use the icon_name module for extra compile-time checking of icon names.

```rust use relm4icons::iconname;

let button = gtk::Button::default(); button.seticonname(icon_name::PLUS); ```

How it works

Codegen

  1. Find all icons in the icons folder
  2. Generate a feature flag and a conditional constant for each icon

Crate

  1. Include only the selected icons in a gresource file
  2. Include the gresource file in the compiled binary
  3. On initialization, add the gresource file to the default icon theme

Add new icons

To add new icons, move them into the icons folder and make sure their file name ends with -symbolic.svg. Then run the following commands:

sh cd update_icons cargo run

Credit

Legal

The source code of Relm4 icons is licensed under the terms of both the MIT license and the Apache License (Version 2.0).

Icons

Both licenses should work for both open source and proprietary applications (without warranty).