Skip to content

Latest commit

 

History

History
10 lines (9 loc) · 211 Bytes

TODO.md

File metadata and controls

10 lines (9 loc) · 211 Bytes

TODO

  • Implement listener to all supported platforms.
import threading
import accentcolordetect

t = threading.Thread(target=accentcolordetect.listener, args=(print,))
t.daemon = True
t.start()