This tool makes TextEdit a lot mroe like Windows Notepad because TextEdit really just sucks.
- Creates a
.txtfile in the dedicated MacOS temporary directory. - Opens it in TextEdit automatically.
- Upon saving, prompts the user for a directory to save the file.
- Deletes the temporary file and copies it to the chosen directory.
- Reopens the file that has been moved for further editing.
Unfortunately, the prebuilt .app is unsigned (I have no money, Apple has a trillion dollars but wants more), so macOS will block it. But good news: you can build your own version realy quickly.
- Install everything in
requirements.txt. - Pop open terminal and go to where the script and icon is.
- Use this super cool bash copypasta (with your own environment obviously):
path/to/.env/python -m PyInstaller \
--windowed \
--name "QuickTXT" \
--icon=icon.icns \
--onefile \
main.py