Nett Icon Viewer is a program that displays icons from a GTK icon theme.
The word Nett is German for "Nice", so the literal translation of the name is "Nice Icon Viewer."
The main application is built with gtk-rs
so you must have the required dependencies for it to be installed.
sudo dnf install gtk4-devel
sudo apt install libgtk-4-dev build-essential
sudo pacman -S gtk4 base-devel
cargo build
To test/run the application you can run:
cargo run
It is planned to be able to install the application using flatpak, but I haven't been able to that yet.
For now, you can use meson
and ninja
to install the application.
sudo dnf install meson ninja
sudo apt install meson ninja-build
sudo pacman -S meson ninja
To install the application you need meson
and ninja
.
meson build
ninja install -C build
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to use conventional commit messages when committing.