mirror of
https://github.com/rwxrob/dot
synced 2024-11-14 18:12:56 +00:00
8 lines
160 B
Plaintext
8 lines
160 B
Plaintext
|
#!/usr/bin/env bash
|
||
|
|
||
|
declare -r red=$((RANDOM%256))
|
||
|
declare -r green=$((RANDOM%256))
|
||
|
declare -r blue=$((RANDOM%256))
|
||
|
|
||
|
echo -e $"\033[38;2;$red;$green;${blue}m"
|