urxvt with random bg color

urxvtRndColorBG.png-nEdxfVvVDNZ9Dfy-th

#!/bin/bash

# urxvtRndColorBG

# open urxvt with random background color

r=$(( ( RANDOM % 4 )  + 1 ))
g=$(( ( RANDOM % 4 )  + 1 ))
b=$(( ( RANDOM % 4 )  + 1 ))

urxvt -bg rgb:$r/$g/$b &

latest version of the script.