We can create a real-time monitor for a variable like this:
CreatePalette@Panel@Row[{"x = ", Dynamic[x]}]
(This is more interesting and useful if x happens to be something like $Assumptions. It's so easy to set a value and then forget about it.)
Unfortunately this stops working if the kernel is re-launched (Quit[], then evaluate something). The palette won't show changes in the value of x any more.
Is there a way to do this so it keeps working even across kernel sessions? I find myself restarting the kernel quite often. (If the resulting palette causes the kernel to be automatically started after Quit that's fine.)
Update: As mentioned in the comments, it turns out that the palette ceases working only if we quit by evaluating Quit[]. When using Evaluation -> Quit Kernel -> Local, it will keep working.
DynamicModule). This is not what I need. Note that the program code (not state) stays the same between sessions, and the variable I monitor is hard-coded. Yet after a kernel restart it stops working, either because it doesn't update dynamically, or because the$CellContext`beforexin the palette causes trouble (just a guess, I couldn't verify or fix this) – Szabolcs Jan 6 at 13:43DynamicModulevalue :DynamicModule[{var = Unevaluated[x]}, ...]. The result is the same though. – Szabolcs Jan 6 at 14:02FrontEndTokenExecute["EvaluatorQuit"]. This is effectively the same as choosing Quit Kernel from the menu as mentioned by Leonid. However, according to the documentation, the frontend token"EvaluatorQuit"hasn't been fully integrated yet so it might change in future. – Heike Jan 6 at 17:15