commit 2c35cd8026e66478f06435e4a4f569b12c2f363f from: Omar Polo date: Thu Feb 17 09:31:50 2022 UTC add examples commit - ba7595d81c78fc52f5b6e5e261dd3eac7cf09e64 commit + 2c35cd8026e66478f06435e4a4f569b12c2f363f blob - edb0f219a17b55ac757734e99e58d2642a25295b blob + 8a0719e1741275d37089b74c268a548f25ccfc3d --- amused.1 +++ amused.1 @@ -88,6 +88,27 @@ If not specified, reads from .It Pa /tmp/amused-$UID UNIX-domain socket used for communication with the daemon. .El +.Sh EXAMPLES +Enqueue all mp3 files in the current directory: +.Bd -literal -offset indent +$ amused add *.mp3 +.Ed +.Pp +Recursively add all opus files: +.Bd -literal -offset indent +$ find . -type f -iname \\*.opus -exec amused add {} + +.Ed +.Pp +Save the state of the player to the file +.Pa state : +.Bd -literal -offset indent +$ amused show > state +.Ed +.Pp +Load a previous state: +.Bd -literal -offset indent +$ amused load < state +.Ed .Sh AUTHORS .An -nosplit Then