diff options
author | Jesse Morgan <jesse@jesterpm.net> | 2014-10-04 19:07:40 -0700 |
---|---|---|
committer | Jesse Morgan <jesse@jesterpm.net> | 2014-10-04 19:09:19 -0700 |
commit | 0d9a27d396d34b6b90bf4d4755e0112b21646e6c (patch) | |
tree | b5ee3644effad83e2d0ed8ad959b1df2487aa7db /clipmv | |
parent | 684cb866562f4af2f0881515b1ef92f7937cfd0d (diff) |
Adding clipmv.
Diffstat (limited to 'clipmv')
-rwxr-xr-x | clipmv | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -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 + |