From bb61bfbb1709fea1493c769f064069ff3ed2290d Mon Sep 17 00:00:00 2001 From: Tom Schimansky Date: Thu, 11 Feb 2021 19:57:09 +0100 Subject: [PATCH] readme changes --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index c747040..99cfd12 100644 --- a/README.md +++ b/README.md @@ -21,6 +21,7 @@ Then you can do: ``` python3 main.py ``` +*Note that macOS dark-mode **only** works with **anaconda** python version.* ### Create standalone application You can also create a standalone application for macOS or Windows by yourself. For macOS you can use py2app: @@ -30,7 +31,7 @@ python3.8 setup.py py2app For windows, you would need to use py2exe instead and modify the setup.py file. To keep application size as small as possible, make sure you create a virtual environment where you install -only the necessary libraries. Note that the macOS dark-mode currently **only** works with the **anaconda python** Version. +only the necessary libraries. The macOS dark-mode currently **only** works with the **anaconda python** Version. If you compile the app with a python.org version, you have to disable the dark-mode by deleting the ```'NSRequiresAquaSystemAppearance': False```entry in setup.py, which causes the application window to go into dark-mode.