aboutsummaryrefslogtreecommitdiffstats
path: root/yeetube.el
diff options
context:
space:
mode:
authorThanos Apollo <[email protected]>2023-08-01 14:09:43 +0300
committerThanos Apollo <[email protected]>2023-08-01 14:11:42 +0300
commit7c1ce56dcf801db6bd1ee4ac867bdd634c8573ba (patch)
treebf3c7d335e40236006f4fb601ec7c0c5a183150a /yeetube.el
parent203388dd4648e32f1f5c4e64b315207540ea9454 (diff)
yeetube-update/insert-info: Remove yeetube-player
Diffstat (limited to 'yeetube.el')
-rw-r--r--yeetube.el7
1 files changed, 1 insertions, 6 deletions
diff --git a/yeetube.el b/yeetube.el
index 179207e..00c98d9 100644
--- a/yeetube.el
+++ b/yeetube.el
@@ -400,10 +400,7 @@ then run this command interactively."
(insert
"\n\n** Info"
(format "\nDownload Directory: %s" yeetube-download-directory)
- (format "\nDownload as audio format: %s" yeetube-download-audio-format)
- (if yeetube-player
- (format "\nYeetube Player: %s" yeetube-player)
- (format "\nYeetube Player: mpv not found. /Set this value manually or install mpv/")))
+ (format "\nDownload as audio format: %s" yeetube-download-audio-format))
(when yeetube-display-info-keys
(insert
"\n\n*** Keybindings"
@@ -457,7 +454,6 @@ WHERE indicates where in the buffer the update should happen.
OPERATION & WHERE are required to work with ='add-variable-watcher."
(let ((to-change
(pcase symbol-name
- ('yeetube-player "Yeetube Player:")
('yeetube-download-directory "Download Directory:")
('yeetube-download-audio-format "Download as audio format:")
('yeetube-query-url "searching:")))
@@ -492,7 +488,6 @@ OPERATION & WHERE are required to work with ='add-variable-watcher."
;; Variable to watch
(add-variable-watcher 'yeetube-download-directory #'yeetube-update-info)
-(add-variable-watcher 'yeetube-player #'yeetube-update-info)
(add-variable-watcher 'yeetube-download-audio-format #'yeetube-update-info)
(add-variable-watcher 'yeetube-query-url #'yeetube-update-info)
(add-variable-watcher 'yeetube-saved-videos #'yeetube-update-saved-videos-list)