summaryrefslogtreecommitdiff
path: root/thunar-volman
diff options
context:
space:
mode:
authorJames Le Cuirot <chewi@gentoo.org>2018-09-25 22:09:57 -0300
committerAndre Miranda <andreldm@xfce.org>2018-09-25 22:09:57 -0300
commit8bc682457c34c426065eb250974649b2096b1a00 (patch)
tree7b03d81de4f081ad331444d3cc45805ce7a50410 /thunar-volman
parente39494b514ec2a75a57243097d447dc90388aa8d (diff)
downloadthunar-volman-8bc682457c34c426065eb250974649b2096b1a00.tar.gz
Add support for Blu-ray media (Bug #13297)
Diffstat (limited to 'thunar-volman')
-rw-r--r--thunar-volman/tvm-block-device.c42
1 files changed, 25 insertions, 17 deletions
diff --git a/thunar-volman/tvm-block-device.c b/thunar-volman/tvm-block-device.c
index edb6cad..475fd03 100644
--- a/thunar-volman/tvm-block-device.c
+++ b/thunar-volman/tvm-block-device.c
@@ -327,21 +327,22 @@ tvm_block_device_autorun (TvmContext *context,
g_return_val_if_fail (G_IS_MOUNT (mount), FALSE);
g_return_val_if_fail (error == NULL || *error == NULL, FALSE);
- /* check if autoplaying video CDs and DVDs is enabled */
+ /* check if autoplaying video disks is enabled */
autoplay = xfconf_channel_get_bool (context->channel,
"/autoplay-video-cds/enabled", FALSE);
if (autoplay)
{
- /* check if we have a video CD or video DVD here */
+ /* check if we have a video disk here */
if (tvm_file_test (mount, "vcd", G_FILE_TEST_IS_DIR)
- || tvm_file_test (mount, "video_ts", G_FILE_TEST_IS_DIR))
+ || tvm_file_test (mount, "video_ts", G_FILE_TEST_IS_DIR)
+ || tvm_file_test (mount, "bdmv", G_FILE_TEST_IS_DIR))
{
- /* determine the autoplay command for video CDs/DVDs */
+ /* determine the autoplay command for video disks */
autoplay_command = xfconf_channel_get_string (context->channel,
"/autoplay-video-cds/command",
"parole");
- /* try to spawn the preferred video CD/DVD player */
+ /* try to spawn the preferred video disk player */
result = tvm_run_command (context, mount, autoplay_command, &err);
/* free the command string */
@@ -596,8 +597,6 @@ tvm_block_device_mounted (TvmContext *context,
const gchar *summary;
const gchar *icon;
const gchar *volume_name;
- gboolean is_cdrom;
- gboolean is_dvd;
gchar *message;
gchar *decoded_name;
#endif
@@ -608,18 +607,27 @@ tvm_block_device_mounted (TvmContext *context,
g_return_if_fail (error == NULL || *error == NULL);
#ifdef HAVE_LIBNOTIFY
- /* distinguish between CDs and DVDs */
- is_cdrom = g_udev_device_get_property_as_boolean (context->device, "ID_CDROM_MEDIA_CD");
- is_dvd = g_udev_device_get_property_as_boolean (context->device, "ID_CDROM_MEDIA_DVD");
-
- if (is_cdrom || is_dvd)
+
+ icon = "drive-optical";
+
+ /* distinguish between CDs, DVDs, Blu-rays */
+ if (g_udev_device_get_property_as_boolean (context->device, "ID_CDROM_MEDIA_CD"))
+ {
+ /* generate notification info */
+ summary = _("CD mounted");
+ message = g_strdup (_("The CD was mounted automatically"));
+ }
+ else if (g_udev_device_get_property_as_boolean (context->device, "ID_CDROM_MEDIA_DVD"))
+ {
+ /* generate notification info */
+ summary = _("DVD mounted");
+ message = g_strdup (_("The DVD was mounted automatically"));
+ }
+ else if (g_udev_device_get_property_as_boolean (context->device, "ID_CDROM_MEDIA_BD"))
{
/* generate notification info */
- icon = "drive-optical";
- summary = is_cdrom ? _("CD mounted") : _("DVD mounted");
- message = g_strdup (is_cdrom
- ? _("The CD was mounted automatically")
- : _("The DVD was mounted automatically"));
+ summary = _("Blu-ray mounted");
+ message = g_strdup (_("The Blu-ray was mounted automatically"));
}
else
{