クリップボードからテキストを読み取り、印刷する単純なpythonスクリプトをバックグラウンドで実行したいと思います。これが私のコードです。
#!/usr/bin/env python
import Tkinter
last_clipboard = ""
def get_clipboard():
global last_clipboard
root = Tkinter.Tk()
root.withdraw() # Hide the main window (optional)
text_in_clipboard = root.clipboard_get()
if text_in_clipboard != last_clipboard:
last_clipboard = text_in_clipboard
print last_clipboard
while True:
get_clipboard()
これは期待どおりに機能していますが、CPUを大量に消費しています(100%CPU)。
それほど消費せずに正しく動作させるにはどうすればよいですか?