mirror of
https://github.com/quexten/goldwarden.git
synced 2025-01-11 02:13:54 +01:00
5 lines
165 B
Python
5 lines
165 B
Python
|
import subprocess
|
||
|
|
||
|
def write(text):
|
||
|
process = subprocess.Popen(["/bin/sh", "-c", "wl-copy"], stdin=subprocess.PIPE)
|
||
|
process.communicate(text.encode('utf-8'))
|