aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/main.cpp15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/main.cpp b/src/main.cpp
index ede8406..56d5fcf 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -4004,6 +4004,21 @@ static void activate(GtkApplication *app, gpointer) {
gtk_window_set_title(GTK_WINDOW(window), window_title.c_str());
gtk_window_set_resizable(GTK_WINDOW(window), false);
+ GtkIconTheme *icon_theme = gtk_icon_theme_get_default();
+#ifdef GSR_ICONS_PATH
+ const char *icon_path = GSR_ICONS_PATH;
+#else
+ const char *icon_path = "/usr/share/icons";
+#endif
+ gtk_icon_theme_set_search_path(icon_theme, &icon_path, 1);
+
+ const char *icon_name = "com.dec05eba.gpu_screen_recorder";
+ if(!gtk_icon_theme_has_icon(icon_theme, icon_name))
+ fprintf(stderr, "Error: failed to find icon %s in %s\n", icon_name, icon_path);
+
+ gtk_window_set_default_icon_name(icon_name);
+ gtk_window_set_icon_name(GTK_WINDOW(window), icon_name);
+
select_window_userdata.app = app;
audio_inputs = get_audio_devices();