diff -up ./thunar/thunar-history.c.0000 ./thunar/thunar-history.c --- ./thunar/thunar-history.c.0000 2013-12-19 01:41:57.000000000 +0200 +++ ./thunar/thunar-history.c 2015-02-15 16:35:15.967375874 +0200 @@ -661,7 +661,7 @@ thunar_history_show_menu (GtkAction else if (thunar_g_file_is_root (lp->data)) icon_name = "drive-harddisk"; else - icon_name = GTK_STOCK_DIRECTORY; + icon_name = "folder"; image = gtk_image_new_from_icon_name (icon_name, GTK_ICON_SIZE_MENU); } diff -up ./thunar/thunar-icon-factory.c.0000 ./thunar/thunar-icon-factory.c --- ./thunar/thunar-icon-factory.c.0000 2015-02-15 16:36:01.022619794 +0200 +++ ./thunar/thunar-icon-factory.c 2015-02-15 16:36:39.000139576 +0200 @@ -599,7 +599,7 @@ static GdkPixbuf* thunar_icon_factory_load_fallback (ThunarIconFactory *factory, gint size) { - return thunar_icon_factory_lookup_icon (factory, GTK_STOCK_FILE, size, FALSE); + return thunar_icon_factory_lookup_icon (factory, "text-x-generic", size, FALSE); } diff -up ./thunar/thunar-location-entry.c.0000 ./thunar/thunar-location-entry.c --- ./thunar/thunar-location-entry.c.0000 2013-12-19 01:41:57.000000000 +0200 +++ ./thunar/thunar-location-entry.c 2015-02-15 16:35:15.968375835 +0200 @@ -197,7 +197,7 @@ thunar_location_entry_init (ThunarLocati /* put reload button in entry */ gtk_entry_set_icon_from_icon_name (GTK_ENTRY (location_entry->path_entry), - GTK_ENTRY_ICON_SECONDARY, GTK_STOCK_REFRESH); + GTK_ENTRY_ICON_SECONDARY, "view-refresh"); gtk_entry_set_icon_tooltip_text (GTK_ENTRY (location_entry->path_entry), GTK_ENTRY_ICON_SECONDARY, _("Reload the current folder")); g_signal_connect (G_OBJECT (location_entry->path_entry), "icon-release", diff -up ./thunar/thunar-shortcuts-model.c.0000 ./thunar/thunar-shortcuts-model.c --- ./thunar/thunar-shortcuts-model.c.0000 2014-12-18 03:05:37.000000000 +0200 +++ ./thunar/thunar-shortcuts-model.c 2015-02-15 16:35:15.970375757 +0200 @@ -895,7 +895,7 @@ thunar_shortcuts_model_shortcut_devices shortcut->group = THUNAR_SHORTCUT_GROUP_DEVICES_FILESYSTEM; shortcut->name = g_strdup (_("File System")); shortcut->file = thunar_file_get_for_uri ("file:///", NULL); - shortcut->gicon = g_themed_icon_new (GTK_STOCK_HARDDISK); + shortcut->gicon = g_themed_icon_new ("drive-harddisk"); shortcut->hidden = thunar_shortcuts_model_get_hidden (model, shortcut); thunar_shortcuts_model_add_shortcut (model, shortcut); @@ -937,7 +937,7 @@ thunar_shortcuts_model_shortcut_network shortcut->group = THUNAR_SHORTCUT_GROUP_NETWORK_DEFAULT; shortcut->name = g_strdup (_("Browse Network")); shortcut->location = g_file_new_for_uri ("network://"); - shortcut->gicon = g_themed_icon_new (GTK_STOCK_NETWORK); + shortcut->gicon = g_themed_icon_new ("network-workgroup"); shortcut->hidden = thunar_shortcuts_model_get_hidden (model, shortcut); thunar_shortcuts_model_add_shortcut (model, shortcut); } @@ -969,7 +969,7 @@ thunar_shortcuts_model_shortcut_places ( shortcut = g_slice_new0 (ThunarShortcut); shortcut->group = THUNAR_SHORTCUT_GROUP_PLACES_DEFAULT; shortcut->file = file; - shortcut->gicon = g_themed_icon_new (GTK_STOCK_HOME); + shortcut->gicon = g_themed_icon_new ("go-home"); shortcut->sort_id = 0; shortcut->hidden = thunar_shortcuts_model_get_hidden (model, shortcut); thunar_shortcuts_model_add_shortcut (model, shortcut); diff -up ./thunar/thunar-window.c.0000 ./thunar/thunar-window.c --- ./thunar/thunar-window.c.0000 2013-12-19 01:41:57.000000000 +0200 +++ ./thunar/thunar-window.c 2015-02-15 16:35:15.975375562 +0200 @@ -351,28 +351,28 @@ static GtkActionEntry action_entries[] = { "empty-trash", NULL, N_ ("_Empty Trash"), NULL, N_ ("Delete all files and folders in the Trash"), G_CALLBACK (thunar_window_action_empty_trash), }, { "detach-tab", NULL, N_ ("Detac_h Tab"), NULL, N_ ("Open current folder in a new window"), G_CALLBACK (thunar_window_action_detach_tab), }, { "close-all-windows", NULL, N_ ("Close _All Windows"), "W", N_ ("Close all Thunar windows"), G_CALLBACK (thunar_window_action_close_all_windows), }, - { "close-tab", GTK_STOCK_CLOSE, N_ ("C_lose Tab"), "W", N_ ("Close this folder"), G_CALLBACK (thunar_window_action_close_tab), }, - { "close-window", GTK_STOCK_QUIT, N_ ("_Close Window"), "Q", N_ ("Close this window"), G_CALLBACK (thunar_window_action_close_window), }, + { "close-tab", "window-close", N_ ("C_lose Tab"), "W", N_ ("Close this folder"), G_CALLBACK (thunar_window_action_close_tab), }, + { "close-window", "application-exit", N_ ("_Close Window"), "Q", N_ ("Close this window"), G_CALLBACK (thunar_window_action_close_window), }, { "edit-menu", NULL, N_ ("_Edit"), NULL, }, - { "preferences", GTK_STOCK_PREFERENCES, N_ ("Pr_eferences..."), NULL, N_ ("Edit Thunars Preferences"), G_CALLBACK (thunar_window_action_preferences), }, + { "preferences", "preferences-system", N_ ("Pr_eferences..."), NULL, N_ ("Edit Thunars Preferences"), G_CALLBACK (thunar_window_action_preferences), }, { "view-menu", NULL, N_ ("_View"), NULL, }, - { "reload", GTK_STOCK_REFRESH, N_ ("_Reload"), "R", N_ ("Reload the current folder"), G_CALLBACK (thunar_window_action_reload), }, + { "reload", "view-refresh", N_ ("_Reload"), "R", N_ ("Reload the current folder"), G_CALLBACK (thunar_window_action_reload), }, { "view-location-selector-menu", NULL, N_ ("_Location Selector"), NULL, }, { "view-side-pane-menu", NULL, N_ ("_Side Pane"), NULL, }, - { "zoom-in", GTK_STOCK_ZOOM_IN, N_ ("Zoom I_n"), "plus", N_ ("Show the contents in more detail"), G_CALLBACK (thunar_window_action_zoom_in), }, - { "zoom-out", GTK_STOCK_ZOOM_OUT, N_ ("Zoom _Out"), "minus", N_ ("Show the contents in less detail"), G_CALLBACK (thunar_window_action_zoom_out), }, - { "zoom-reset", GTK_STOCK_ZOOM_100, N_ ("Normal Si_ze"), "0", N_ ("Show the contents at the normal size"), G_CALLBACK (thunar_window_action_zoom_reset), }, + { "zoom-in", "zoom-in", N_ ("Zoom I_n"), "plus", N_ ("Show the contents in more detail"), G_CALLBACK (thunar_window_action_zoom_in), }, + { "zoom-out", "zoom-out", N_ ("Zoom _Out"), "minus", N_ ("Show the contents in less detail"), G_CALLBACK (thunar_window_action_zoom_out), }, + { "zoom-reset", "zoom-original", N_ ("Normal Si_ze"), "0", N_ ("Show the contents at the normal size"), G_CALLBACK (thunar_window_action_zoom_reset), }, { "go-menu", NULL, N_ ("_Go"), NULL, }, - { "open-parent", GTK_STOCK_GO_UP, N_ ("Open _Parent"), "Up", N_ ("Open the parent folder"), G_CALLBACK (thunar_window_action_go_up), }, - { "open-home", GTK_STOCK_HOME, N_ ("_Home"), "Home", N_ ("Go to the home folder"), G_CALLBACK (thunar_window_action_open_home), }, + { "open-parent", "go-up", N_ ("Open _Parent"), "Up", N_ ("Open the parent folder"), G_CALLBACK (thunar_window_action_go_up), }, + { "open-home", "go-home", N_ ("_Home"), "Home", N_ ("Go to the home folder"), G_CALLBACK (thunar_window_action_open_home), }, { "open-desktop", THUNAR_STOCK_DESKTOP, N_ ("Desktop"), NULL, N_ ("Go to the desktop folder"), G_CALLBACK (thunar_window_action_open_desktop), }, - { "open-file-system", GTK_STOCK_HARDDISK, N_ ("File System"), NULL, N_ ("Browse the file system"), G_CALLBACK (thunar_window_action_open_file_system), }, - { "open-network", GTK_STOCK_NETWORK, N_("B_rowse Network"), NULL, N_ ("Browse local network connections"), G_CALLBACK (thunar_window_action_open_network), }, + { "open-file-system", "drive-harddisk", N_ ("File System"), NULL, N_ ("Browse the file system"), G_CALLBACK (thunar_window_action_open_file_system), }, + { "open-network", "network-workgroup", N_("B_rowse Network"), NULL, N_ ("Browse local network connections"), G_CALLBACK (thunar_window_action_open_network), }, { "open-templates", THUNAR_STOCK_TEMPLATES, N_("T_emplates"), NULL, N_ ("Go to the templates folder"), G_CALLBACK (thunar_window_action_open_templates), }, { "open-location", NULL, N_ ("_Open Location..."), "L", N_ ("Specify a location to open"), G_CALLBACK (thunar_window_action_open_location), }, { "help-menu", NULL, N_ ("_Help"), NULL, }, - { "contents", GTK_STOCK_HELP, N_ ("_Contents"), "F1", N_ ("Display Thunar user manual"), G_CALLBACK (thunar_window_action_contents), }, - { "about", GTK_STOCK_ABOUT, N_ ("_About"), NULL, N_ ("Display information about Thunar"), G_CALLBACK (thunar_window_action_about), }, + { "contents", "help-browser", N_ ("_Contents"), "F1", N_ ("Display Thunar user manual"), G_CALLBACK (thunar_window_action_contents), }, + { "about", "help-about", N_ ("_About"), NULL, N_ ("Display information about Thunar"), G_CALLBACK (thunar_window_action_about), }, }; static const GtkToggleActionEntry toggle_action_entries[] =