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.
38 lines
702 B
38 lines
702 B
#!/bin/sh |
|
|
|
# move to 0; 0 |
|
printf '\033[H' |
|
# fill space |
|
for _ in $(seq 0 23); do |
|
for _ in $(seq 0 7); do |
|
printf '\-/|\\~_>^<' |
|
done |
|
done |
|
|
|
# move to 0; 0 |
|
printf '\033[H' |
|
|
|
#set color |
|
printf '\033[46;31;3m' |
|
# set top/bottom margins: |
|
printf '\033[5;20r' |
|
# allow left/right margins |
|
printf '\033[?69h' |
|
# set left/right margins: |
|
printf '\033[5;74s' |
|
|
|
# DECFRA |
|
# fill inside rect with nothing |
|
printf '\033[;10;40;15;45\044x' |
|
# fill inside rect with invalid value |
|
printf '\033[30;10;40;15;45\044x' |
|
# top left corner |
|
printf '\033[64;;;10;10\044x' |
|
# bottom right corner |
|
printf '\033[64;17;70;;\044x' |
|
|
|
# DECERA |
|
# top right corner |
|
printf '\033[;70;10;\044z' |
|
# bottom left corner |
|
printf '\033[17;;;10\044z'
|
|
|