blob: 12156f2d18afc0985cabf869d139c3c2777ef362 (
plain)
1
2
3
4
5
6
7
8
|
#!/bin/sh
[ -n "$TERMUX_VERSION" ] && { termux-clipboard-get; exit; }
xclip -out -selection clipboard 2>/dev/null ||
xclip -out -selection secondry 2>/dev/null ||
xclip -out -selection primary 2>/dev/null ||
notify-send "Selection and clipboard is empty"
|