diff options
author | jnats <dev@jnats.xyz> | 2021-05-01 20:55:18 +0100 |
---|---|---|
committer | jnats <dev@jnats.xyz> | 2021-05-01 20:55:18 +0100 |
commit | 1c9db1aaf434d29ee7c6ce293f07cae85afa72a4 (patch) | |
tree | dabf08eb0953384d35e99c0431dc9998952ddb3c | |
parent | 61ab4279accddc97c21c87a515f25edfd75ec0e7 (diff) | |
download | nofetch-1c9db1aaf434d29ee7c6ce293f07cae85afa72a4.tar.gz nofetch-1c9db1aaf434d29ee7c6ce293f07cae85afa72a4.tar.bz2 |
added new quip
-rwxr-xr-x | nofetch | 9 |
1 files changed, 6 insertions, 3 deletions
@@ -2,13 +2,13 @@ if [[ $1 == "" ]]; then - rng=$((1 + $RANDOM % 11 )) + rng=$((1 + $RANDOM % 12 )) else - if [[ $1 -lt 12 ]]; + if [[ $1 -lt 13 ]]; then rng=$1 else - rng=$((1 + $RANDOM % 11 )) + rng=$((1 + $RANDOM % 12 )) fi fi @@ -56,6 +56,9 @@ then elif [ $rng -eq 11 ] then nofetch="i use "$osname" btw" +elif [ $rng -eq 12 ] +then + nofetch="if you're reading this, it's already too late" else nofetch="something has gone terribly wrong" fi |