- Macのメモ帳(メモ帳、CotEditorなど)が高機能すぎて重たい
- あくまでメモなので保存しない、削除時に「保存しますか」と聞かれるのも億劫
- 前面の右端、常に前面にいてほしい
- 保存したい分は別にコピーして保存すればよい
- PySimleGUIで作成
- ただし、複数起動ができない(致命的)
import PySimpleGUI as sg
default_font = ("Osaka", 16)
layout = [
[sg.Multiline(key='-ML-', size=(30, 5), font=default_font)]
]
win_location = (1550, 150)
window = sg.Window("I don't save.", layout, location=win_location, keep_on_top=True)
while True:
event, values = window.read()
if event == sg.WIN_CLOSED:
break
window.close()