This is a Notepad made with Python3 and tkinter library.
git clone https://github.com/Baelfire18/Notepad.git
cd Notepad
In Windows:
py -m venv env
env\Scripts\activate
In macOS and Linux:
python3 -m venv env
source env/bin/activate # in bash/zsh
. env/bin/activate.fish # in fish
pip install -r requirements.txt
python Notepad.py
pyinstaller.exe --onefile --windowed --icon='assets\favicon.ico' Notepad.py
I was inspired by this code from code with Harry.