Add a utility program that prints out all the icon names in the gnome theme

This commit is contained in:
Savanni D'Gerinel 2023-03-11 20:17:04 -05:00
parent 7c56a2907f
commit 1b61689de6
1 changed files with 8 additions and 0 deletions

8
hex-grid/src/bin/icon.rs Normal file
View File

@ -0,0 +1,8 @@
use gtk::prelude::*;
fn main() {
gtk::init();
for name in gtk::IconTheme::new().icon_names() {
println!("{}", name);
}
}