mirror of
https://github.com/rwxrob/dot
synced 2024-11-18 15:25:52 +00:00
6 lines
119 B
Plaintext
6 lines
119 B
Plaintext
|
#!/usr/bin/env bash
|
||
|
red=$[RANDOM%255]
|
||
|
green=$[RANDOM%255]
|
||
|
blue=$[RANDOM%255]
|
||
|
echo -en "\033[38;2;$red;$green;${blue}m"
|