On Sun, 12 Jan 2025, Van Ly wrote:
Another ctwm feature request would be for xterm to remember original size and full/maximized window size toggle that persists across ctwm restart.
This should be implemented by the WM, not xterm. It should either a) store the orig. dimensions in proterties attached to the window, or b) stash it in a file somewhere. evilwm(1) does the former (not that it has a re-exec feature...): ``` _EVILWM_UNMAXIMISED_VERT(CARDINAL) = 304, 724 _EVILWM_UNMAXIMISED_HORZ(CARDINAL) = 221, 1204 _NET_WM_STATE(ATOM) = _NET_WM_STATE_MAXIMIZED_VERT, _NET_WM_STATE_MAXIMIZED_HORZ, _NET_WM_STATE_FULLSCREEN, _NET_WM_STATE_FOCUSED ``` -RVP