From 8422757706462fd4abe65187902d5590942f0cc9 Mon Sep 17 00:00:00 2001 From: Raymaekers Luca Date: Fri, 3 Nov 2023 17:43:13 +0100 Subject: added cliptype --- bin/guiscripts/cliptype | 2 ++ 1 file changed, 2 insertions(+) create mode 100755 bin/guiscripts/cliptype (limited to 'bin/guiscripts') diff --git a/bin/guiscripts/cliptype b/bin/guiscripts/cliptype new file mode 100755 index 0000000..e6ac093 --- /dev/null +++ b/bin/guiscripts/cliptype @@ -0,0 +1,2 @@ +#!/bin/sh +clipo | ydotool type -f - -- cgit v1.2.3 From 53cb3d537303c75ac5d3de577075928b687d240a Mon Sep 17 00:00:00 2001 From: Raymaekers Luca Date: Fri, 3 Nov 2023 17:58:22 +0100 Subject: added clipswap --- bin/guiscripts/clipswap | 4 ++++ 1 file changed, 4 insertions(+) create mode 100755 bin/guiscripts/clipswap (limited to 'bin/guiscripts') diff --git a/bin/guiscripts/clipswap b/bin/guiscripts/clipswap new file mode 100755 index 0000000..1cae135 --- /dev/null +++ b/bin/guiscripts/clipswap @@ -0,0 +1,4 @@ +#!/bin/sh +paste="$(clipo)" +clipo -p | clipp +printf '%s' "$paste" | clipp -p -- cgit v1.2.3 From 7d39603f3dab52c5e2212c6c12bc4b951a4de94e Mon Sep 17 00:00:00 2001 From: Raymaekers Luca Date: Fri, 3 Nov 2023 18:36:45 +0100 Subject: added primary clipboard support --- bin/guiscripts/clipo | 8 +++++--- bin/guiscripts/clipp | 8 +++++--- 2 files changed, 10 insertions(+), 6 deletions(-) (limited to 'bin/guiscripts') diff --git a/bin/guiscripts/clipo b/bin/guiscripts/clipo index e3ae714..39994f9 100755 --- a/bin/guiscripts/clipo +++ b/bin/guiscripts/clipo @@ -1,4 +1,6 @@ #!/bin/sh -[ "$WAYLAND_DISPLAY" ] && - wl-paste -n || - xclip -o -selection clipboard -r +[ "$1" = "-p" ] && arg='primary' +if [ "$WAYLAND_DISPLAY" ] +then wl-paste -n ${1} +else xclip -o -selection "${arg:-clipboard}" -r +fi diff --git a/bin/guiscripts/clipp b/bin/guiscripts/clipp index 538f69b..c9e4f51 100755 --- a/bin/guiscripts/clipp +++ b/bin/guiscripts/clipp @@ -1,4 +1,6 @@ #!/bin/sh -[ "$WAYLAND_DISPLAY" ] && - wl-copy -n || - xclip -selection clipboard -r +[ "$1" = "-p" ] && arg='primary' +if [ "$WAYLAND_DISPLAY" ] +then wl-copy -n $1 +else xclip -selection "${arg:-clipboard}" -r +fi -- cgit v1.2.3