delay a few things on startup, such as setting the visibility mode, which ensures...
[personal-kdebase.git] / apps / konsole / tests / ct2
blob8a654eda638d5dd31468541388441c55a4472308
1 #!/bin/sh --
3 # display ANSI colours and test bold/blink attributes
4 # orginates from Eterm distribution
5 #-------------------------------------------------------------------------
7 echo ""; echo "\e[m"
8 echo " 40 41 42 43 44 45 46 47 49"
9 for fg in 30 31 32 33 34 35 36 37 39
11 l1=" $fg ";
12 l2="\e[1m $fg \e[m";
13 for bg in 40 41 42 43 44 45 46 47 49
15 l1="${l1}\e[${fg};${bg}m xx \e[m"
16 l2="${l2}\e[${fg};${bg};1m XX \e[m"
17 done
18 echo "$l1"
19 echo "$l2"
20 done