blob: 065a57e50c1015f3fed09d95562f7dfc3532e50c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/bash
set -e
# if you want to view colors use gcolor3 from the repos
SELECTED_COLOR=$(xcolor) # use xcolor or xoris ; xcolor has zoom feature
# Copy to clipboard
echo $SELECTED_COLOR | xsel -b
echo $SELECTED_COLOR
|