summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesse Morgan <jesse@jesterpm.net>2014-10-04 19:07:40 -0700
committerJesse Morgan <jesse@jesterpm.net>2014-10-04 19:09:19 -0700
commit0d9a27d396d34b6b90bf4d4755e0112b21646e6c (patch)
treeb5ee3644effad83e2d0ed8ad959b1df2487aa7db
parent684cb866562f4af2f0881515b1ef92f7937cfd0d (diff)
Adding clipmv.
-rwxr-xr-xclipmv8
1 files changed, 8 insertions, 0 deletions
diff --git a/clipmv b/clipmv
new file mode 100755
index 0000000..41adada
--- /dev/null
+++ b/clipmv
@@ -0,0 +1,8 @@
+#!/bin/sh
+
+# Move the primary clipboard to the secondary clipboard.
+# This really only exists because chrome doesn't handle shift+insert correctly...
+# Requires the xclip package to be installed.
+
+xclip -out -selection primary|xclip -in -selection clip
+