mirror of
https://github.com/GRFreire/scripts.git
synced 2026-01-09 04:49:38 +00:00
15 lines
281 B
Bash
Executable File
15 lines
281 B
Bash
Executable File
#!/bin/sh
|
|
|
|
killall colorpicker > /dev/null
|
|
|
|
notify() {
|
|
if [ "$(command -v notify-send)" ]; then
|
|
notify-send "$@"
|
|
fi
|
|
}
|
|
|
|
COLOR="$(colorpicker --short --one-shot --preview)"
|
|
|
|
printf "%s" "$COLOR" | xclip -selection clipboard
|
|
notify "clip-color" "Color $COLOR copied!"
|