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.
20 lines
304 B
20 lines
304 B
4 years ago
|
#!/bin/sh
|
||
|
|
||
|
# fill space with E
|
||
|
printf '\033#8'
|
||
|
#set color
|
||
|
printf '\033[46;31;3m'
|
||
|
|
||
|
# set title + icon
|
||
|
printf '\033]0;echo "fail"\n\007'
|
||
|
|
||
|
# query title + icon, and device attributes
|
||
|
printf '\033]0;?\007\033[>c'
|
||
|
|
||
|
# set again title + icon
|
||
|
printf '\033]0;title-icon-v2\007'
|
||
|
|
||
|
# set empty
|
||
|
printf '\033]0;\007'
|
||
|
|