1
Fork 0

Compare commits

..

No commits in common. "9c900c919e991b41d9000f5102c0094f64d417ef" and "e851405da4054661adcbc818088f2a48a1425210" have entirely different histories.

2 changed files with 7 additions and 34 deletions

View File

@ -13,7 +13,6 @@
chromium
clang
clonehero
conky
delta
deno
direnv

View File

@ -11,7 +11,6 @@ async function main(): Promise<void> {
.option("--next-song", "Play the next song.")
.option("--play-pause", "Toggle play or pause.")
.option("--previous-song", "Play the previous song.")
.option("--print <print:string>", "Print data from the current song.")
.option(
"--volume <volume:number>",
"Change the volume by a relative amount",
@ -37,44 +36,19 @@ async function main(): Promise<void> {
if (options.volume !== undefined) {
await fetch(`${remoteApi}/setvolumerel/${options.volume}`);
}
if (options.print !== undefined) {
const status = await getStatus();
const progressPercentage = ((status.progress / status.track.duration) * 100)
.toFixed(2);
const markersAndReplacements = [
["album", status.album],
["artist", status.artist],
["title", status.title],
["progress", progressPercentage],
];
let formattedString = options.print;
for (const [marker, replacement] of markersAndReplacements) {
const regex = new RegExp(`<${marker}>`, "g");
formattedString = formattedString.replace(regex, replacement);
}
console.log(formattedString);
}
}
type Status = {
album: string;
artist: string;
progress: number;
title: string;
track: {
duration: number;
artist?: string;
title?: string;
};
};
async function getStatus(): Promise<Status> {
return await (await fetch(`${remoteApi}/status`)).json();
}
async function notifyCurrentSong(): Promise<void> {
const status = await getStatus();
const status: Status = await (await fetch(`${remoteApi}/status`)).json();
if (status.artist === undefined || status.title === undefined) {
return;
}
await Deno.run({
cmd: ["notify-send", status.title, status.artist],
}).status();