summaryrefslogtreecommitdiff
path: root/thunar-volman-settings
diff options
context:
space:
mode:
authorMaurizio Galli <maurizio.galli@gmail.com>2020-08-20 00:02:03 +0800
committerMaurizio Galli <maurizio.galli@gmail.com>2020-08-20 00:02:03 +0800
commit53651a257e6bda06f65f68318ce6361050689cfa (patch)
tree96f8f0fd4c9d9ae4ced63ec3ec4ce1c69148bcba /thunar-volman-settings
parent2bf371eb31931020c687541fd2f0156a8d0ceead (diff)
downloadthunar-volman-53651a257e6bda06f65f68318ce6361050689cfa.tar.gz
Add new app icon and switch to rDNS
Diffstat (limited to 'thunar-volman-settings')
-rw-r--r--thunar-volman-settings/thunar-volman-settings.desktop.in.in2
-rw-r--r--thunar-volman-settings/tvm-preferences-dialog.c4
2 files changed, 3 insertions, 3 deletions
diff --git a/thunar-volman-settings/thunar-volman-settings.desktop.in.in b/thunar-volman-settings/thunar-volman-settings.desktop.in.in
index 0c5c362..1f8e9db 100644
--- a/thunar-volman-settings/thunar-volman-settings.desktop.in.in
+++ b/thunar-volman-settings/thunar-volman-settings.desktop.in.in
@@ -2,7 +2,7 @@
_Name=Removable Drives and Media
_Comment=Configure management of removable drives and media
Exec=thunar-volman-settings
-Icon=drive-removable-media
+Icon=org.xfce.volman
Terminal=false
StartupNotify=true
Type=Application
diff --git a/thunar-volman-settings/tvm-preferences-dialog.c b/thunar-volman-settings/tvm-preferences-dialog.c
index 51d6043..8e05220 100644
--- a/thunar-volman-settings/tvm-preferences-dialog.c
+++ b/thunar-volman-settings/tvm-preferences-dialog.c
@@ -96,7 +96,7 @@ tvm_preferences_dialog_init (TvmPreferencesDialog *dialog)
channel = xfconf_channel_get ("thunar-volman");
/* configure the dialog properties */
- gtk_window_set_icon_name (GTK_WINDOW (dialog), "drive-removable-media");
+ gtk_window_set_icon_name (GTK_WINDOW (dialog), "org.xfce.volman");
gtk_window_set_resizable (GTK_WINDOW (dialog), FALSE);
gtk_window_set_title (GTK_WINDOW (dialog), _("Removable Drives and Media"));
xfce_titled_dialog_set_subtitle (XFCE_TITLED_DIALOG (dialog),
@@ -161,7 +161,7 @@ tvm_preferences_dialog_init (TvmPreferencesDialog *dialog)
gtk_container_add (GTK_CONTAINER (frame), grid);
gtk_widget_show (grid);
- image = gtk_image_new_from_icon_name ("drive-removable-media", GTK_ICON_SIZE_DIALOG);
+ image = gtk_image_new_from_icon_name ("org.xfce.volman", GTK_ICON_SIZE_DIALOG);
gtk_widget_set_halign (image, GTK_ALIGN_CENTER);
gtk_widget_set_valign (image, GTK_ALIGN_START);
gtk_grid_attach (GTK_GRID (grid), image, 0, 0, 1, 3);