Terminal emulator with all the bells and whistles
https://www.enlightenment.org
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
360 B
21 lines
360 B
#!/bin/sh |
|
|
|
# fill space with E |
|
printf '\033[69;1;1;25;80\044x' |
|
|
|
#set color |
|
printf '\033[46;31;3m' |
|
|
|
# move |
|
printf '\033[H' |
|
|
|
# 3 loops of 128 colors |
|
for i in $(seq 255); do |
|
printf "\033[48;2;0;%s;%sm " "$i" "$i" |
|
done |
|
for i in $(seq 255); do |
|
printf "\033[48;2;%s;0;%sm " "$i" "$i" |
|
done |
|
for i in $(seq 255); do |
|
printf "\033[48;2;%s;%s;0m " "$i" "$i" |
|
done
|
|
|