From 22cf0bd38bf90d248f939877627991559edfb1da Mon Sep 17 00:00:00 2001 From: simplePCBuilding <98422316+simplePCBuilding@users.noreply.github.com> Date: Mon, 14 Mar 2022 11:27:57 +0100 Subject: [PATCH 1/3] Create README.md --- README.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..e13351a --- /dev/null +++ b/README.md @@ -0,0 +1,12 @@ +# MusicPlayer +Yet another Music Player but with one twist. It displays the Playlist beautifully on a second display. + +FEATURES +- Play back music +- Show the playing song on a special screen that also displays the upcoming songs +- Add a file (songlist.csv) into the folder containing the songs, that has the following layout: Songname, Artist, Dance/Music-Style, Tempo +- Multiple Keyboard-Shortcuts are available: Spacebar = Play/Pause; Escape = go back; S = Switch to showcase-screen; Left-arrow-key = previous song; Up-Arrow-Key = Rewind; Right-arrow-key = Next song +- Planned: App theming + +Installation: +- You will need to install the following dependencies: kivy[full], kivymd, pygame From 8866b8571c2899e6c09e8a4933784da8f5844caa Mon Sep 17 00:00:00 2001 From: simplePCBuilding <98422316+simplePCBuilding@users.noreply.github.com> Date: Mon, 14 Mar 2022 11:29:48 +0100 Subject: [PATCH 2/3] Small Error fixed now --- bin/gui/gui.kv | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/gui/gui.kv b/bin/gui/gui.kv index 54257e2..4a620f2 100644 --- a/bin/gui/gui.kv +++ b/bin/gui/gui.kv @@ -1,7 +1,7 @@ RootScreen: Home: Main: - ShowcaseS + ShowcaseS: ########### # POPUPS @@ -218,4 +218,4 @@ RootScreen: name: "Settings" md_bg_color: app.theme_cls.accent_color ToggleButton: - text: "Songinfo = Filename" \ No newline at end of file + text: "Songinfo = Filename" From debc6726a61af552b5267d85fde358122dc8964d Mon Sep 17 00:00:00 2001 From: simplePCBuilding <98422316+simplePCBuilding@users.noreply.github.com> Date: Mon, 14 Mar 2022 16:53:04 +0100 Subject: [PATCH 3/3] Update README.md --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index e13351a..a179597 100644 --- a/README.md +++ b/README.md @@ -9,4 +9,5 @@ FEATURES - Planned: App theming Installation: -- You will need to install the following dependencies: kivy[full], kivymd, pygame +- You will need to install the following dependencies: kivy[full], kivymd, pygame. +- Kivy may actually also (if you are on a distro that uses apt) be installed by cloning an apt repository as follows (adapted from kivy documentation), as pip will most likely fail: 'sudo add-apt-repository ppa:kivy-team/kivy', then running 'sudo apt-get update' and then 'sudo apt-get install python3-kivy'