From 75c3c5c42d0f278833ba77214cfd938357ab6d28 Mon Sep 17 00:00:00 2001 From: Savanni D'Gerinel Date: Sat, 11 Mar 2023 21:37:41 -0500 Subject: [PATCH] Remove the icon listing app --- hex-grid/src/bin/icon.rs | 8 -------- 1 file changed, 8 deletions(-) delete mode 100644 hex-grid/src/bin/icon.rs diff --git a/hex-grid/src/bin/icon.rs b/hex-grid/src/bin/icon.rs deleted file mode 100644 index 4ff3f93..0000000 --- a/hex-grid/src/bin/icon.rs +++ /dev/null @@ -1,8 +0,0 @@ -use gtk::prelude::*; - -fn main() { - gtk::init(); - for name in gtk::IconTheme::new().icon_names() { - println!("{}", name); - } -}