I'd like to know about useful tweaks users have made to their personal
MGTD tiddlywikis. Here are two tweaks I use in mine (other members of
this group showed me how implement these tweaks):
-------
*When you save changes to your locally hosted mGTD file you get the
little yellow box "Main TiddlyWiki file saved". I prefer that this box
should disappear after a few seconds, so that I am less likely to
incorrectly think that all changes have been saved when this is not
actually the case.
Place the following into your system tweaks tiddler and tag it
systemConfig:
/***
AutoClearMessageMacro
***/
{{{
window.oldDisplayMessage = displayMessage;
displayMessage = function (text,linkText)
{oldDisplayMessage(text,linkText);
setTimeout( 'clearMessage()', 3000 );
}
}}}
--------
*If you want to be able to make a future action dependent on a
tickler, this tweak will add a 'tickler' toggle button to actions.
When this button is clicked on, the item is both a tickler and an
action, so now you can make future actions dependent on it.
Open tiddler TitleButtons
go to the section Action
and add the line <span macro="singleToggleTag tag:Tickler"></span>
after the line <span macro="singleToggleTag tag:Starred"></span>
------
Please share your favorites.
--
You received this message because you are subscribed to the Google Groups "GTD
TiddlyWiki" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/gtd-tiddlywiki?hl=en.