summaryrefslogtreecommitdiff
path: root/clipmv
diff options
context:
space:
mode:
Diffstat (limited to '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
+