mirror of
https://github.com/rwinkhart/sshyp.git
synced 2026-08-28 12:56:28 -04:00
Former-commit-id: 3690a41cbfce5eff13388fa7c9fe9f39d6e36865 Former-commit-id: a9a991dc141d1eb7d7973f8ecb08188dda27953b
43 lines
1.4 KiB
Python
Executable File
43 lines
1.4 KiB
Python
Executable File
#!/usr/bin/env python3
|
|
from hashlib import sha512
|
|
from subprocess import PIPE, run
|
|
from sys import argv
|
|
from time import sleep
|
|
|
|
# set period of time to wait before attempting to clear clipboard
|
|
sleep(30)
|
|
# enable the storing of clipboard contents hash for later comparison
|
|
hash_paste = sha512()
|
|
|
|
# PORT START CLIPCLEAR
|
|
if argv[2] == 'wsl':
|
|
hash_paste.update(run(('powershell.exe', '-c', 'Get-Clipboard'), stdout=PIPE).stdout.strip())
|
|
if argv[1] == hash_paste.hexdigest():
|
|
run(('powershell.exe', '-c', 'Set-Clipboard'))
|
|
|
|
elif argv[2] == 'wayland':
|
|
hash_paste.update(run('wl-paste', stdout=PIPE).stdout.strip())
|
|
if argv[1] == hash_paste.hexdigest():
|
|
run(('wl-copy', '-c'))
|
|
|
|
elif argv[2] == 'haiku':
|
|
hash_paste.update(run(('clipboard', '-p'), stdout=PIPE).stdout.strip())
|
|
if argv[1] == hash_paste.hexdigest():
|
|
run(('clipboard', '-r'))
|
|
|
|
elif argv[2] == 'mac':
|
|
hash_paste.update(run('pbpaste', stdout=PIPE).stdout.strip())
|
|
if argv[1] == hash_paste.hexdigest():
|
|
run('pbcopy', input=b'')
|
|
|
|
elif argv[2] == 'termux':
|
|
hash_paste.update(run('termux-clipboard-get', stdout=PIPE).stdout.strip())
|
|
if argv[1] == hash_paste.hexdigest():
|
|
run(("termux-clipboard-set", "''"))
|
|
|
|
elif argv[2] == 'x11':
|
|
hash_paste.update(run(('xclip', '-o', '-sel', 'c'), stdout=PIPE).stdout.strip())
|
|
if argv[1] == hash_paste.hexdigest():
|
|
run(('xclip', '-i', '/dev/null', '-sel', 'c'))
|
|
# PORT END CLIPCLEAR
|