Methods for Completely Overriding the TiddlyWiki Interface

It appears that Method 1 was used: switching the layout.

From you, I learned how to switch layouts using buttons.

Someone previously asked why we completely cover the TiddlyWiki interface. https://simplifaifullscreen.tiddlyhost.com/ is one example. Basic-Anywhere-Machine is another. An app’s interface often requires no visual distractions whatsoever.

This is also an example of resetting all CSS.

I switch back to normal layout from a preact controlled button:

function(){ 
    setfield({$tiddler:"$:/theme", text:"$:/themes/tiddlywiki/vanilla"});
    setfield({$tiddler:"$:/layout", text:"$:/core/ui/PageTemplate"})
}
2 Likes