zenity/scripts/color.sh
2022-03-24 16:41:21 +00:00

12 lines
204 B
Bash
Executable File

#!/bin/sh
COLOR=`zenity --color-selection --show-palette`
case $? in
0)
echo "You selected $COLOR.";;
1)
echo "No color selected.";;
-1)
echo "An unexpected error has occurred.";;
esac