aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/clipboard-copier
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/clipboard-copier')
-rwxr-xr-xscripts/clipboard-copier/copier20
1 files changed, 0 insertions, 20 deletions
diff --git a/scripts/clipboard-copier/copier b/scripts/clipboard-copier/copier
deleted file mode 100755
index e20dcf4..0000000
--- a/scripts/clipboard-copier/copier
+++ /dev/null
@@ -1,20 +0,0 @@
-#!/usr/bin/env sh
-
-# Description: Copy selection to clipboard
-#
-# Shell: POSIX compliant
-# Author: Arun Prakash Jana
-
-SELECTION=~/.config/nnn/.selection
-
-# Linux
-cat "$SELECTION" | xargs -0 | xsel -bi
-
-# macOS
-# cat "$SELECTION" | xargs -0 | pbcopy
-
-# Termux
-# cat "$SELECTION" | xargs -0 | termux-clipboard-set
-
-# Cygwin
-# cat "$SELECTION" | xargs -0 | clip