Man, toot-tooi is SUCH a polished terminal #Fediverse client.
I'm just not sure if it's possible to use your own editor, rather than the built-in one. That's a deal-breaker.
Also, the interface is too bloated for 80x25. It's all very pretty, but obviously meant to be used with a maximized terminal, or a small-font-size terminal. That ain't the way I roll. ^__^
Spawn toot
fawakka.c
/*
* Fa wakka with AmigaOS API
*/
#include <proto/exec.h>
#include <proto/dos.h>
main(int argc, void *argv[])
{
struct Library *SysBase;
struct Library *DOSBase;
SysBase = *((struct Library **)4UL);
DOSBase = OpenLibrary("dos.library",0);
if (DOSBase) {
Write(Output(),"Fa Wakka!\n",10);
CloseLibrary(DOSBase);
}
return(0);
}
Note:
Syntax error corrected