I don’t think I can work on this project any further. Feel free to use it, and I’d be really glad if someone wants to contribute and improve it.
Open-source Python application for display a text always on top.
It stays on top even when switching desktops/workspaces!
Create a virtual environment in project folder:
python3 -m venv venvActivate the virtual environment
source venv/bin/activateor for Windows
.\venv\Scripts\Activate.ps1Check if it activated
which python3or for Windows
python -c "import sys; print(sys.executable)"If the directory shows the current project folder, it means it activated.
Run this to install packages needed
pip install -r requirements.txtGo to where the package placed:
customtkinter\assets\iconsThen replace the default .ico file with a different one with the same name.
Script:
pyinstaller --noconsole --onefile main.py --icon=assets/jot_icon.ico --add-data "themes/dark_theme.json;themes" --add-data "themes/light_theme.json;themes"