Hello Edward, hello Community,Related to my earlier question on a successful usage of a 'dark theme' in Leo 6 I have a follow-up question:Is there any reason why in this context, i.e. Windows 10 & Leo 6.0, I should investigate in PyQt 4?
Which other references do you recommend related to 'dark themes' beside the ones that I found so far?
I am currently trying to install leo on windows... (I wish the documentation would be a lot more detailled and precise for this)
After installing python3 with the official installer, It took me a lot of googling to figure out that I needed to put python3's path and its Scripts folder path in windows 'PATH' env. variable manualy in order to be able to run "pip3 install PyQt5".
the fact that Qt5 is not easily installable via a simple .exe download is 'scary' for (non-python) people like me :)
Also, I want to run leo headless: so I wonder if theres a way to set the 'leo id' without qt. (on first run leo asks for an id )
Also, I want to run leo headless: so I wonder if theres a way to set the 'leo id' without qt. (on first run leo asks for an id )Try running `leo-console` (or `python launchLeo.py --gui=console`). [Later]: doesn't work. Loads npyscreen and then exits. This is probably a bug.
set HOME=%USERPROFILE%
mkdir %HOME%\.leo
echo "My ID" > %HOME%\.leo\.leoID.txt
leo-consoleWork around:set HOME=%USERPROFILE%
mkdir %HOME%\.leo
echo "My ID" > %HOME%\.leo\.leoID.txt
leo-consoleNote: skip the `set HOME` line if you already have it defined.
echo "My ID" > %HOME%\.leo\.leoID.txt
echo My-ID > %HOME%\.leo\.leoID.txt
-matt