This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from tkinter import * | |
from string import Template | |
import clipboard | |
root = Tk() | |
# Make the window transparent, bring it to topmost | |
root.wait_visibility(root) | |
root.attributes('-alpha', 0.5) | |
# Note sometimes this causes other windows to hide, still figuring what happened | |
root.attributes('-topmost', True) |