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.
30 lines
409 B
30 lines
409 B
#!/bin/sh |
|
|
|
# fill space with E |
|
printf '\033#8' |
|
#set color |
|
printf '\033[46;31;3m' |
|
|
|
# set title + icon |
|
printf '\033]0;alpha\007' |
|
|
|
# save title |
|
printf '\033[22;2t' |
|
|
|
# set again title + icon |
|
printf '\033]0;bravo\007' |
|
|
|
# save icon |
|
printf '\033[22;1t' |
|
|
|
# set again title + icon |
|
printf '\033]0;charlie\007' |
|
|
|
# pop title |
|
printf '\033[23;2t' |
|
|
|
# set again icon |
|
printf '\033]1;delta\007' |
|
|
|
# pop icon |
|
printf '\033[23;1t'
|
|
|