Revert to old clipboard default xclip command

This commit is contained in:
John Helmert
2019-06-09 21:24:16 -05:00
parent 942e651654
commit 304096f8d8

View File

@@ -20,6 +20,6 @@ def copy(text, cmd):
if sys.platform == 'darwin':
cmd = 'pbcopy w'
else: # For Linux, BSD, cygwin, etc.
cmd = 'xclip'
cmd = 'xclip -selection -clipboard'
_subprocess_copy(text, cmd.split())