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.
41 lines
781 B
41 lines
781 B
#!/bin/sh |
|
# fill space with E |
|
printf '\033[69;1;1;25;80\044x' |
|
#set color |
|
printf '\033[46;31;3m' |
|
|
|
# set top/bottom margins: |
|
printf '\033[10;20r' |
|
# allow left/right margins |
|
printf '\033[?69h' |
|
# set left/right margins: |
|
printf '\033[5;15s' |
|
# fill margin with @ |
|
printf '\033[64;10;5;20;15\044x' |
|
|
|
# move |
|
printf '\033[10;15H' |
|
printf '>>>>>>>' |
|
# move |
|
printf '\033[12;16H' |
|
printf '#######' |
|
|
|
# move |
|
printf '\033[12;70H' |
|
printf 'bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb' |
|
|
|
# move |
|
printf '\033[15;7H' |
|
printf 'zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz' |
|
|
|
|
|
|
|
# set left/right margins: |
|
printf '\033[25;35s' |
|
# fill margin with @ |
|
printf '\033[64;10;25;20;35\044x' |
|
# restrict cursor |
|
printf '\033[?6h' |
|
# move |
|
printf '\033[6;6H' |
|
printf 'gggggggggggggggggggggggggggggggggggggggggggggggggg'
|
|
|