From 5949c9cb12a377659fe438db646fae5cd3de677e Mon Sep 17 00:00:00 2001 From: mahuntington Date: Thu, 16 Feb 2023 06:34:59 -0500 Subject: [PATCH 1/2] Update 'README.md' --- README.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/README.md b/README.md index 20de9f9..ec340a7 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,22 @@ +## Setup + +`cd` into repo dir + +``` +python3 -m venv ~/elgato_env +source ~/elgato_env/bin/activate +pip install -r requirements.txt +``` + +## Compile + +``` source ~/elgato_env/bin/activate pyinstaller -F --paths=~/Desktop/ elgato.py +``` + +## Execution + +``` +~/Documents/elgato/dist/elgato 192.168.1.2 192.168.1.4 day +``` \ No newline at end of file From bab1efbde84b32b5d6a81f565898b55f97a39315 Mon Sep 17 00:00:00 2001 From: mahuntington Date: Thu, 16 Feb 2023 07:04:15 -0500 Subject: [PATCH 2/2] Update 'README.md' --- README.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/README.md b/README.md index ec340a7..43501d1 100644 --- a/README.md +++ b/README.md @@ -8,6 +8,15 @@ source ~/elgato_env/bin/activate pip install -r requirements.txt ``` +for `darkmode` script + +``` +brew install brightness +brew install smudge/smudge/nightlight +``` + +Download https://github.com/jenghis/nshift + ## Compile ```