A desktop application that receives text from standard input and displays buttons to copy it to the clipboard.
Simply pipe the output of shell scripts or command-line tools, and you get one-click copy buttons instantly.
echo "text" | clipboard-palette# Plain text
echo "Hello, World!" | clipboard-palette
# Split by newlines
echo -e "Line1\nLine2\nLine3" | clipboard-palette --multiline
# Split by empty lines
echo -e "Section1\n\nSection2" | clipboard-palette --split-empty-line
# JSON format
echo '[{"label": "Name", "text": "Taro"}]' | clipboard-palette --json
