diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | src/list.c | 6 |
2 files changed, 11 insertions, 0 deletions
@@ -1,3 +1,8 @@ +2001-10-09 shawn <sabetts@vcn.bc.ca> + + * src/list.c (format_window_name): add formatting option '%l' to + grab the last_access field from the window. + 2001-10-05 Gergely Nagy <algernon@debian.org> * contrib/ratpoisonrc-mode.el: superceded by.. @@ -629,6 +629,7 @@ print_window_information (rp_window *win) %a - application name %c - resource class %i - X11 Window ID + %l - last access number */ static void @@ -681,6 +682,11 @@ format_window_name (char *fmt, rp_window *win, rp_window *other_win, sbuf_concat (buffer, dbuf); break; + case 'l': + snprintf (dbuf, 9, "%d", win->last_access); + sbuf_concat (buffer, dbuf); + break; + case '%': dbuf[0] = '%'; dbuf[1] = 0; |