From 1f969054b208898f2463e943266726cea91ef1e4 Mon Sep 17 00:00:00 2001 From: Micke Nordin Date: Tue, 24 May 2022 14:45:02 +0000 Subject: [PATCH 1/3] Update 'README.md' --- README.md | 21 +++++---------------- 1 file changed, 5 insertions(+), 16 deletions(-) diff --git a/README.md b/README.md index b5df37f..a3f8ae2 100644 --- a/README.md +++ b/README.md @@ -3,23 +3,12 @@ Tinge is a mobile first application for controlling Philips Hue lights on Linux ## Installation -Install wxPython (don't use pip to install it) eg. for PostmarketOS: +On Debian/Mobian ``` -sudo apk add py3-wxpython -``` -or for Debian/Mobian: -``` -sudo apt install python3-wxgtk4.0 -``` - -clone this repository: -``` -git clone https://code.smolnet.org/micke/tinge -``` -Run the crude installer: -``` -cd tinge -./install.sh +wget -O - https://repo.mic.ke/PUBLIC.KEY | sudo gpg --output /usr/share/keyrings/micke-archive-unstable.gpg --dearmor + echo "deb [signed-by=/usr/share/keyrings/micke-archive-unstable.gpg] https://repo.mic.ke/debian/ unstable main +deb-src [signed-by=/usr/share/keyrings/micke-archive-unstable.gpg] https://repo.mic.ke/debian/ unstable main" | sudo tee /etc/apt/sources.list.d/debian-micke-unstable.list +sudo apt update && sudo apt install python3-tinge ``` ## Requirements Requires a recent Python3 and pip3, most likely python >= 3.7. It is only tested with 3.9 on PostmarketOS on the PinePhone and on Debian Bullseye though. From 8fe9ea55345fa324445182b9b57d4c9a7fb5d676 Mon Sep 17 00:00:00 2001 From: Micke Nordin Date: Tue, 24 May 2022 14:45:17 +0000 Subject: [PATCH 2/3] Update 'README.md' --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a3f8ae2..ec3a3dc 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ Tinge is a mobile first application for controlling Philips Hue lights on Linux On Debian/Mobian ``` wget -O - https://repo.mic.ke/PUBLIC.KEY | sudo gpg --output /usr/share/keyrings/micke-archive-unstable.gpg --dearmor - echo "deb [signed-by=/usr/share/keyrings/micke-archive-unstable.gpg] https://repo.mic.ke/debian/ unstable main +echo "deb [signed-by=/usr/share/keyrings/micke-archive-unstable.gpg] https://repo.mic.ke/debian/ unstable main deb-src [signed-by=/usr/share/keyrings/micke-archive-unstable.gpg] https://repo.mic.ke/debian/ unstable main" | sudo tee /etc/apt/sources.list.d/debian-micke-unstable.list sudo apt update && sudo apt install python3-tinge ``` From 180b9382f5232f0d971dce760785f8b25aa961b8 Mon Sep 17 00:00:00 2001 From: Micke Nordin Date: Tue, 24 May 2022 14:45:53 +0000 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 ec3a3dc..eb6b9bf 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,8 @@ On Debian/Mobian ``` wget -O - https://repo.mic.ke/PUBLIC.KEY | sudo gpg --output /usr/share/keyrings/micke-archive-unstable.gpg --dearmor echo "deb [signed-by=/usr/share/keyrings/micke-archive-unstable.gpg] https://repo.mic.ke/debian/ unstable main -deb-src [signed-by=/usr/share/keyrings/micke-archive-unstable.gpg] https://repo.mic.ke/debian/ unstable main" | sudo tee /etc/apt/sources.list.d/debian-micke-unstable.list +deb-src [signed-by=/usr/share/keyrings/micke-archive-unstable.gpg] https://repo.mic.ke/debian/ unstable main" | \ +sudo tee /etc/apt/sources.list.d/debian-micke-unstable.list sudo apt update && sudo apt install python3-tinge ``` ## Requirements