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