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.
26 lines
461 B
26 lines
461 B
#!/bin/bash |
|
|
|
# fill space with E |
|
printf '\033#8' |
|
# cursor to 0,0 |
|
printf '\033[H' |
|
# restrict cursor |
|
printf '\033[?6h' |
|
# set top/bottom margins: |
|
printf '\033[10;20r' |
|
# allow left/right margins |
|
printf '\033[?69h' |
|
# set left/right margins: |
|
printf '\033[5;15s' |
|
# move to 0,0 with margins: |
|
printf '\033[H' |
|
# clean up rect |
|
printf '\033[1;1;11;11\044z' |
|
echo '@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@' |
|
|
|
I=0 |
|
while [ 1 ]; do |
|
sleep 2 |
|
echo $I |
|
I=$((I + 1)) |
|
done
|
|
|