diff options
author | Wolfgang Müller | 2024-10-26 21:21:54 +0200 |
---|---|---|
committer | Wolfgang Müller | 2024-11-06 21:30:12 +0100 |
commit | ef2ba0943d941b080946f85993e4383cd5e0b1a3 (patch) | |
tree | e0bedfa0cbdfc560aaf28f7bccfb8446259a3edf /later.1 | |
parent | ec4750b5e2f801fec7e1100299114483d4a04f4e (diff) | |
download | later-ef2ba0943d941b080946f85993e4383cd5e0b1a3.tar.gz |
Allow manually creating watch_later entries
This commit introduces the "add" command which allows the user to create
watch_later entries manually. Make sure to silently ignore entries that
already exist - we'll print the entire list of entries subsequently
anyway. Also, make explicitly specifying "add" optional if there's any
remaining arguments in argv.
Diffstat (limited to 'later.1')
-rw-r--r-- | later.1 | 14 |
1 files changed, 14 insertions, 0 deletions
@@ -8,6 +8,10 @@ .Nm .Op options .Op Ic list +.Nm +.Op options +.Op Ic add +.Ar item ... .Sh DESCRIPTION .Nm is a program to manage watch_later entries as created by @@ -26,10 +30,20 @@ update titles of videos using yt-dlp .Pp The commands are as follows: .Bl -tag -width Ds +.It Sy add Em item ... +Creates watch_later entries for the given items. +This command is implied if it wasn't explicitly given but there are +remaining arguments. .It Sy list Lists all watch_later entries. This command is implied if there are no remaining arguments. .El +.Pp +An item may be a URL or a path to a file on the file system. +Any command that modifies watch_later entries will subsequently print +all entries just as if +.Ic list +was invoked. .Sh FILES .Bl -tag -width "1" .It Pa $XDG_CACHE_HOME/later/titles.json |