From cde730e0308f9c9e227b85cf3950f7fb8f5fe507 Mon Sep 17 00:00:00 2001
From: JozanLeClerc <bousset.rudy@gmail.com>
Date: Thu, 12 Nov 2020 18:00:08 +0100
Subject: Notifications update

---
 .local/bin/linkview | 18 ++++++++----------
 1 file changed, 8 insertions(+), 10 deletions(-)

(limited to '.local/bin/linkview')

diff --git a/.local/bin/linkview b/.local/bin/linkview
index c5d5053..704e42a 100755
--- a/.local/bin/linkview
+++ b/.local/bin/linkview
@@ -50,10 +50,8 @@ sub open_link
 			$file_name = $url;
 			$file_name =~ s/.+\///g;
 			if ($file_name =~ m/^watch\?v=.+/) {
-				$file_name = "Your video";
-			}
-			else {
-				$file_name = '<b>' . $file_name . '</b>';
+				$file_name = `youtube-dl -e $url`;
+				chomp $file_name;
 			}
 			system(
 				NOTIFYSEND_PATH,
@@ -61,8 +59,8 @@ sub open_link
 				'normal',
 				'-t',
 				'10000',
-				'  download started',
-				$file_name . ' started downloading'
+				'download started',
+				'  <b>'. $file_name . '</b> started downloading'
 			);
 			$ret = -1;
 			if ($a == 2) {
@@ -78,8 +76,8 @@ sub open_link
 					'normal',
 					'-t',
 					'10000',
-					'  download complete',
-					$file_name . ' downloaded successfully to '
+					' download complete',
+					'  <b>' . $file_name . '</b> downloaded successfully to '
 					. '<b>' . $pwd . '</b>'
 				);
 			}
@@ -90,8 +88,8 @@ sub open_link
 					'critical',
 					'-t',
 					'10000',
-					'  download failed',
-					'failed to download <b>' . $file_name . '</b>'
+					'download failed',
+					'  failed to download <b>' . $file_name . '</b>'
 				);
 			}
 			exit 0;
-- 
cgit v1.2.3