aboutsummaryrefslogtreecommitdiffstats
path: root/bin/clipboard-wrapper
diff options
context:
space:
mode:
Diffstat (limited to 'bin/clipboard-wrapper')
-rwxr-xr-xbin/clipboard-wrapper14
1 files changed, 0 insertions, 14 deletions
diff --git a/bin/clipboard-wrapper b/bin/clipboard-wrapper
deleted file mode 100755
index 5ac3dec..0000000
--- a/bin/clipboard-wrapper
+++ /dev/null
@@ -1,14 +0,0 @@
-#!/usr/bin/env bash
-set -euo pipefail
-IFS=$'\n\t'
-
-if [ $(uname) == "Darwin" ]; then
- if [ "$@" == "-i" ]; then
- pbcopy
- elif [ "$@" == "-o" ]; then
- pbpaste
- fi
-else
- xclip "$@"
-fi
-exit 0