8 lines
206 B
Fish
Executable file
8 lines
206 B
Fish
Executable file
#!/usr/bin/env fish
|
|
|
|
set arg "(empv-enqueue-last \""$argv[1]"\")"
|
|
echo $arg
|
|
set title (yt-dlp --get-title $argv[1])
|
|
echo $title added
|
|
emacsclient -e $arg && notify-send $title" has been added to the queue"
|