Jimi Agent
Jimi Agent is usuful for developers enhance information between users and his applications with interactive characters. Jimi Agent has been developed with C# and GTK on mono plataform.
Simple example code:
JimiAgent ja = new JimiAgent();
ja.infoFontSize(fz);
ja.show(5);
ja.state(JimiState.Happy);
ja.write("<b>Knight Rider</b>, a shadowy flight into the dangerous world.");
ja.position(JimiPosition.TopRight);
ja.infoFontFamily("Arial");
ja.infoFontStyle(Pango.Style.Oblique);
Gdk.Color col = new Gdk.Color();
Gdk.Color.Parse("#ECF4FF", ref col);
ja.infoBgColor(col);
ja.windowBgColor(col);ScreenShots
Simple Jimi
Jimi with a long text
Transparent Jimi window (experimental)
For showing test window:
JimiTest jt = new JimiTest();