tweaks to toggle changes and empv
This commit is contained in:
parent
51e283e587
commit
476b820019
44
README.org
44
README.org
|
@ -581,6 +581,9 @@ Here let's try to add ligatures to our font system since the VictorMono Nerd Fon
|
||||||
There are two major packages we need to get the functionality I desire. Evil and general.
|
There are two major packages we need to get the functionality I desire. Evil and general.
|
||||||
|
|
||||||
*** Evil
|
*** Evil
|
||||||
|
:PROPERTIES:
|
||||||
|
:ID: 20250304T164537.064599
|
||||||
|
:END:
|
||||||
|
|
||||||
#+begin_src emacs-lisp
|
#+begin_src emacs-lisp
|
||||||
(use-package evil
|
(use-package evil
|
||||||
|
@ -614,6 +617,12 @@ This evil-collection package includes a lot of other evil based things.
|
||||||
:after evil
|
:after evil
|
||||||
:init (evil-escape-mode +1)
|
:init (evil-escape-mode +1)
|
||||||
:config
|
:config
|
||||||
|
(defun chris/toggle-evil-escape-sequence ()
|
||||||
|
(interactive)
|
||||||
|
(if (string= evil-escape-key-sequence "ae")
|
||||||
|
(setq evil-escape-key-sequence "fd")
|
||||||
|
(setq evil-escape-key-sequence "ae")))
|
||||||
|
|
||||||
(setq evil-escape-key-sequence (kbd "ae")
|
(setq evil-escape-key-sequence (kbd "ae")
|
||||||
evil-escape-delay 0.3))
|
evil-escape-delay 0.3))
|
||||||
#+end_src
|
#+end_src
|
||||||
|
@ -5049,23 +5058,32 @@ With empv we can perhaps control mpv much more fine grainly and even search yout
|
||||||
(message args)
|
(message args)
|
||||||
(empv-play-or-enqueue video))
|
(empv-play-or-enqueue video))
|
||||||
|
|
||||||
(defun chris/empv-yt-dlp ()
|
(defun chris/empv-yt-dlp (&optional file)
|
||||||
"Download the current video and and play it"
|
"Download the current video and and play it"
|
||||||
(interactive)
|
(interactive)
|
||||||
(let* ((item (empv-youtube-results--current-item))
|
(setq lexical-binding t)
|
||||||
(video-id (alist-get 'videoId item))
|
(let* ((item (when (not file) (empv-youtube-results--current-item)))
|
||||||
(playlist-id (alist-get 'playlistId item))
|
(video-id (when (not file) (alist-get 'videoId item)))
|
||||||
(title (alist-get 'title item))
|
(playlist-id (when (not file) (alist-get 'playlistId item)))
|
||||||
(url (format
|
(title (if file (shell-command
|
||||||
|
(format "yt-dlp --get-title %s" file))
|
||||||
|
(alist-get 'title item)))
|
||||||
|
(url (if file file
|
||||||
|
(format
|
||||||
"https://youtube.com/%s=%s"
|
"https://youtube.com/%s=%s"
|
||||||
(if video-id "watch?v" "playlist?list")
|
(if video-id "watch?v" "playlist?list")
|
||||||
(or video-id playlist-id))))
|
(or video-id playlist-id)))))
|
||||||
(async-shell-command (concat
|
(message url)
|
||||||
"yt-dlp" " -o '/home/chris/vids/%(title)s.%(ext)s'"
|
(async-start-process
|
||||||
" \"" url "\""))
|
"yt-dlp" "yt-dlp"
|
||||||
|
(lambda ()
|
||||||
(let ((file (format "/home/chris/vids/%s.%s" title "webm")))
|
(let ((file (format "/home/chris/vids/%s.%s" title "webm")))
|
||||||
(empv-play file))
|
(empv-play-or-enqueue file))
|
||||||
(message url)))
|
(message "here be the url %s" url))
|
||||||
|
"-o" "'/home/chris/vids/%(title)s.%(ext)s'" url)))
|
||||||
|
|
||||||
|
(get-process "yt-dlp")
|
||||||
|
(chris/empv-yt-dlp "https://inv.cochrun.xyz/watch?v=qRE6kf30u4g")
|
||||||
|
|
||||||
(defun chris/empv-yt-dlp-jellyfin ()
|
(defun chris/empv-yt-dlp-jellyfin ()
|
||||||
"Grabs the current video at point and downloads it to my jellyfin server"
|
"Grabs the current video at point and downloads it to my jellyfin server"
|
||||||
|
@ -5272,7 +5290,7 @@ q quit-window
|
||||||
(elfeed-search-untag-all-unread)
|
(elfeed-search-untag-all-unread)
|
||||||
(if (process-live-p proc)
|
(if (process-live-p proc)
|
||||||
(set-process-sentinel
|
(set-process-sentinel
|
||||||
proc `(empv-play-or-enqueue
|
proc `(empv-enqueue
|
||||||
,(concat "/home/chris/vids/" title ".webm")))
|
,(concat "/home/chris/vids/" title ".webm")))
|
||||||
(message "No process running"))))
|
(message "No process running"))))
|
||||||
|
|
||||||
|
|
41
init.el
41
init.el
|
@ -350,6 +350,12 @@
|
||||||
:after evil
|
:after evil
|
||||||
:init (evil-escape-mode +1)
|
:init (evil-escape-mode +1)
|
||||||
:config
|
:config
|
||||||
|
(defun chris/toggle-evil-escape-sequence ()
|
||||||
|
(interactive)
|
||||||
|
(if (string= evil-escape-key-sequence "ae")
|
||||||
|
(setq evil-escape-key-sequence "fd")
|
||||||
|
(setq evil-escape-key-sequence "ae")))
|
||||||
|
|
||||||
(setq evil-escape-key-sequence (kbd "ae")
|
(setq evil-escape-key-sequence (kbd "ae")
|
||||||
evil-escape-delay 0.3))
|
evil-escape-delay 0.3))
|
||||||
|
|
||||||
|
@ -3698,23 +3704,32 @@ targets."
|
||||||
(message args)
|
(message args)
|
||||||
(empv-play-or-enqueue video))
|
(empv-play-or-enqueue video))
|
||||||
|
|
||||||
(defun chris/empv-yt-dlp ()
|
(defun chris/empv-yt-dlp (&optional file)
|
||||||
"Download the current video and and play it"
|
"Download the current video and and play it"
|
||||||
(interactive)
|
(interactive)
|
||||||
(let* ((item (empv-youtube-results--current-item))
|
(setq lexical-binding t)
|
||||||
(video-id (alist-get 'videoId item))
|
(let* ((item (when (not file) (empv-youtube-results--current-item)))
|
||||||
(playlist-id (alist-get 'playlistId item))
|
(video-id (when (not file) (alist-get 'videoId item)))
|
||||||
(title (alist-get 'title item))
|
(playlist-id (when (not file) (alist-get 'playlistId item)))
|
||||||
(url (format
|
(title (if file (shell-command
|
||||||
|
(format "yt-dlp --get-title %s" file))
|
||||||
|
(alist-get 'title item)))
|
||||||
|
(url (if file file
|
||||||
|
(format
|
||||||
"https://youtube.com/%s=%s"
|
"https://youtube.com/%s=%s"
|
||||||
(if video-id "watch?v" "playlist?list")
|
(if video-id "watch?v" "playlist?list")
|
||||||
(or video-id playlist-id))))
|
(or video-id playlist-id)))))
|
||||||
(async-shell-command (concat
|
(message url)
|
||||||
"yt-dlp" " -o '/home/chris/vids/%(title)s.%(ext)s'"
|
(async-start-process
|
||||||
" \"" url "\""))
|
"yt-dlp" "yt-dlp"
|
||||||
|
(lambda ()
|
||||||
(let ((file (format "/home/chris/vids/%s.%s" title "webm")))
|
(let ((file (format "/home/chris/vids/%s.%s" title "webm")))
|
||||||
(empv-play file))
|
(empv-play-or-enqueue file))
|
||||||
(message url)))
|
(message "here be the url %s" url))
|
||||||
|
"-o" "'/home/chris/vids/%(title)s.%(ext)s'" url)))
|
||||||
|
|
||||||
|
(get-process "yt-dlp")
|
||||||
|
(chris/empv-yt-dlp "https://inv.cochrun.xyz/watch?v=qRE6kf30u4g")
|
||||||
|
|
||||||
(defun chris/empv-yt-dlp-jellyfin ()
|
(defun chris/empv-yt-dlp-jellyfin ()
|
||||||
"Grabs the current video at point and downloads it to my jellyfin server"
|
"Grabs the current video at point and downloads it to my jellyfin server"
|
||||||
|
@ -3839,7 +3854,7 @@ targets."
|
||||||
(elfeed-search-untag-all-unread)
|
(elfeed-search-untag-all-unread)
|
||||||
(if (process-live-p proc)
|
(if (process-live-p proc)
|
||||||
(set-process-sentinel
|
(set-process-sentinel
|
||||||
proc `(empv-play-or-enqueue
|
proc `(empv-enqueue
|
||||||
,(concat "/home/chris/vids/" title ".webm")))
|
,(concat "/home/chris/vids/" title ".webm")))
|
||||||
(message "No process running"))))
|
(message "No process running"))))
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue