Ich möchte ein einfaches Python-Skript im Hintergrund ausführen, das Text aus der Zwischenablage liest und druckt. Hier ist mein Code.
#!/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()
Dies funktioniert wie erwartet, verbraucht jedoch zu viel CPU (100% CPU).
Wie kann ich es richtig machen, ohne so viel zu verbrauchen?