diff options
author | sabetts <sabetts> | 2001-10-10 05:35:00 +0000 |
---|---|---|
committer | sabetts <sabetts> | 2001-10-10 05:35:00 +0000 |
commit | b538ebeacf38e1605c7ad551ba4d54e140f27916 (patch) | |
tree | faa3af74f318dbebce01d1d0e9136394ed10acc3 /src | |
parent | a05ec662cb1e2dfd116e5b5b6d5d538b809d4f26 (diff) | |
download | ratpoison-b538ebeacf38e1605c7ad551ba4d54e140f27916.zip |
(format_window_name): add formatting option '%l' to
grab the last_access field from the window.
Diffstat (limited to 'src')
-rw-r--r-- | src/list.c | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -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; |