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.
19 lines
455 B
19 lines
455 B
#!/bin/sh |
|
|
|
# fill space with E |
|
printf '\033#8' |
|
# set color |
|
printf '\033[46;31;3m' |
|
# move to 0;0 |
|
printf '\033[H' |
|
# set tabs |
|
printf '\033H\033H\033[3C\033[W\033[4C\033[0W\033[5C\033H\033[6C\033H' |
|
printf '\033[7C\033H\033[8C\033H\033[9C' |
|
printf '\nTabs set:' |
|
# show # on tabs |
|
printf '\n#\t#\t#\t#\t#\t#\t#\t#\t#\t#\t#' |
|
printf '\033[Z@' |
|
printf '\n#\t#\t#\t#\t#\t#\t#\t#\t#\t#\t#' |
|
printf '\033[0Z@' |
|
printf '\n#\t#\t#\t#\t#\t#\t#\t#\t#\t#\t#' |
|
printf '\033[3Z@'
|
|
|