Add a utility program that prints out all the icon names in the gnome theme
This commit is contained in:
parent
7c56a2907f
commit
1b61689de6
|
@ -0,0 +1,8 @@
|
||||||
|
use gtk::prelude::*;
|
||||||
|
|
||||||
|
fn main() {
|
||||||
|
gtk::init();
|
||||||
|
for name in gtk::IconTheme::new().icon_names() {
|
||||||
|
println!("{}", name);
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue