We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
cmus does this: http://cmus.sourceforge.net/
Here is how cmus does it: (file: ui_curses.c line 1255)
static void set_title(const char *title) { if (!set_term_title) return;
if (t_ts) { printf("%s%s%s", tgoto(t_ts, 0, 0), title, t_fs); fflush(stdout); }
} Other possibly useful info: http://www.ibiblio.org/pub/Linux/docs/HOWTO/Xterm-Title
Workaround: echo -e "format_nowplaying_song = \033]2;%t by %a\007" >> config
The text was updated successfully, but these errors were encountered:
No branches or pull requests
cmus does this: http://cmus.sourceforge.net/
Here is how cmus does it:
(file: ui_curses.c line 1255)
static void set_title(const char *title)
{
if (!set_term_title)
return;
}
Other possibly useful info: http://www.ibiblio.org/pub/Linux/docs/HOWTO/Xterm-Title
Workaround: echo -e "format_nowplaying_song = \033]2;%t by %a\007" >> config
The text was updated successfully, but these errors were encountered: