Code refactoring and minor bugfixes

This commit is contained in:
2022-08-30 18:28:40 +02:00
parent d99899eb16
commit fa5069f310
5 changed files with 79 additions and 37 deletions

View File

@@ -13,11 +13,13 @@ export const logger = (proto: string, args: string) => {
*/
export const splash = () => {
console.log(" __ ____ __ __ ______")
const fg = "\u001b[38;2;50;113;168m"
const reset = "\u001b[0m"
console.log(`${fg} __ ____ __ __ ______`)
console.log(" __ __/ /________/ / /__ _ _____ / / / / / / _/")
console.log(" / // / __/___/ _ / / _ \ | |/|/ / -_) _ \/ /_/ // / ")
console.log(" \_, /\__/ \_,_/_/ .__/ |__,__/\__/_.__/\____/___/ ")
console.log("/___/ /_/ \n")
console.log(`/___/ /_/ \n${reset}`)
console.log(" yt-dlp-webUI - A web-ui for yt-dlp, simply enough")
console.log("---------------------------------------------------\n")
}