This is not a 100% clone, but a similar one! This all made in Python and can be turned into an executable file (.exe) using pyinstaller!
- Added scrollbar.
- Sets automatically the default font of editor in "Set font" Top level app.
- Webbrowser support.
Create firstly or download an image with .png or .jpeg extension, visit a site that converts .png or .jpeg to .ico. Here is the site that I used to convert my image: Convertico.
Install pyinstaller using command prompt:
pip install pyinstaller
Use cd command to navigate into the folder that your project contain the program file, which is main.py.
Then, use the command below to turn the main.py to an executable file:
pyinstaller --onefile --icon=icon.ico main.py
If you see some folders that has been created automatically, congrats! Go to dist folder, drag the .exe file into the folder where it can read the icon. You can delete the dist folder and other folders that were created.
Enjoy! :)
All credits to T.F.A#7524.