diff --git a/album_art.jpg b/album_art.jpg deleted file mode 100644 index f31bf4f..0000000 Binary files a/album_art.jpg and /dev/null differ diff --git a/album_art.png b/album_art.png deleted file mode 100644 index da64ec0..0000000 Binary files a/album_art.png and /dev/null differ diff --git a/program-embedded.py b/program-embedded.py index e8288ee..6998639 100644 --- a/program-embedded.py +++ b/program-embedded.py @@ -205,14 +205,14 @@ pause_img = ttk.PhotoImage(file="icons/pause-circle-x2.png") next_img = ttk.PhotoImage(file="icons/skip-next-x2.png") previous_img = ttk.PhotoImage(file="icons/skip-previous-x2.png") lyrics_img = ttk.PhotoImage(file="icons/lyrics.png") -album_art_img = ImageTk.PhotoImage(Image.open("album_art.jpg")) +album_art_img = "" # album_art_img = ttk.PhotoImage(file="album_art.png") # canvas = ttk.Canvas(root, width=480, height=320) # canvas.create_image(0, 0, image=album_art_img, anchor="nw") # canvas.grid() -# canvas = ttk.Canvas(root, width=480, height=320) +canvas = ttk.Canvas(root, width=480, height=320) frame_artist_song = tk.Frame(root) frame_controls = tk.Frame(root) @@ -266,6 +266,7 @@ album_art_label.bind("", lambda e:unloadLyrics_pressed()) # Function to update the song label with the current track's name def update_song_label(): global lrc + global album_art_img # Get the current playback information try: current_playback = spotify.current_playback()