6 lines
143 B
Bash
6 lines
143 B
Bash
|
#!/usr/bin/env zsh
|
||
|
|
||
|
local color="$(xcolor)"
|
||
|
printf '%s' "${color}" | xclip -selection clipboard
|
||
|
notify-send -t 5000 "Color Coppied" "${color}"
|