initial commit...
This commit is contained in:
commit
d190b6b63e
6 changed files with 92 additions and 0 deletions
16
randterm.sh
Executable file
16
randterm.sh
Executable file
|
|
@ -0,0 +1,16 @@
|
|||
#!/bin/sh
|
||||
COLORS=("dodgerblue" "chartreuse" "aliceblue" "forestgreen" "burlywood" "dark goldenrod" "indian red" "firebrick" "Gainsboro" "Misty Rose" "Peach Puff" "Seashell" "Slate Gray" "Tan" "Tomato")
|
||||
DACOLN=$(( $RANDOM % ${#COLORS} ))
|
||||
DACOL=${COLORS[$DACOLN]}
|
||||
|
||||
DAFADE=$(( 25 + ($RANDOM % 25 ) ))
|
||||
|
||||
DAFADEN=$(( $RANDOM % ${#COLORS} ))
|
||||
DAFCOL=${COLORS[$DAFADEN]}
|
||||
|
||||
DASHP=$(( $RANDOM % 25 ))
|
||||
DASHP=$(( $DASHP + 10 ))
|
||||
|
||||
#DAFADE=$(( $DAFADE + 50 ))
|
||||
#Help: /home/andrew/bin//amigaterm2.sh fontsize tintcolor fadepercent fadecolor cursorcolor extrashit
|
||||
amigaterm2.sh 12 "$DACOL" "$DAFADE" "$DAFCOL" green -sh "$DASHP" "$@"
|
||||
Loading…
Add table
Add a link
Reference in a new issue