From 5dab2033e1cf4ce6fbb855bb051cc25232970bcc Mon Sep 17 00:00:00 2001 From: David Date: Thu, 18 Sep 2014 22:12:49 +1200 Subject: Renamed icon files --- tray.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tray.c') diff --git a/tray.c b/tray.c index 83b1504..10e9668 100644 --- a/tray.c +++ b/tray.c @@ -306,7 +306,7 @@ void tray_init() { tray_set_defaults(); tray = gtk_status_icon_new(); - char* icon_file = g_strconcat(_DEFAULT_THEME, "/cpufreq-0.png", NULL); + char* icon_file = g_strconcat(_DEFAULT_THEME, "/cpu-0.png", NULL); debug("Setting icon to '%s'\n",icon_file); gtk_status_icon_set_from_file(tray, icon_file); @@ -362,7 +362,7 @@ void tray_update_icon_percent() } debug("Rounded/adjusted CPU percentage: %d\n",adjusted_percent); - asprintf(&file, "%s/cpufreq-%d.png", _DEFAULT_THEME,adjusted_percent); + asprintf(&file, "%s/cpu-%d.png", _DEFAULT_THEME,adjusted_percent); debug("Setting tray icon to '%s'\n",file); gtk_status_icon_set_from_file(tray, file); -- cgit v1.1