From 058f5a12e3d831c494639844ddcbaf9a01168557 Mon Sep 17 00:00:00 2001 From: Firstname Lastname Date: Mon, 30 Dec 2019 10:18:46 +0100 Subject: [PATCH] Update README --- README.md | 2 ++ core/interface.py | 6 +++--- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 0946bf6..d5748d0 100644 --- a/README.md +++ b/README.md @@ -3,6 +3,8 @@ Ydl is a simple python program that downloads youtube videos, converts them into audio file and creates an xml file to listen to them as a podcast. +Another project, far more advanced can be found there: https://github.com/MrS0m30n3/youtube-dl-gui + ## Getting Started * Run install.sh under Debian based distribution. diff --git a/core/interface.py b/core/interface.py index 6760541..42306da 100644 --- a/core/interface.py +++ b/core/interface.py @@ -43,9 +43,9 @@ class Interface(tk.Frame): def create_widgets(self): - tk.Label(self.master, padx=10,text="Youtube URL",bg="red").grid(row=0,columnspan='1') - tk.Label(self.master, padx=10,text="Folder").grid(row=1,columnspan='1') - tk.Label(self.master, padx=10,text="Podcast website root").grid(row=2,columnspan='1') + tk.Label(self.master, padx=10,text="Youtube URL",font="Helvetica 10 bold").grid(row=0,columnspan='1',sticky='W') + tk.Label(self.master, padx=10,text="Folder",font="Helvetica 10 bold").grid(row=1,columnspan='1',sticky='W') + tk.Label(self.master, padx=10,text="Podcast website root",font="Helvetica 10 bold").grid(row=2,columnspan='1',sticky='W') # Vars attached to args self.youtube_url = tk.StringVar()