summaryrefslogtreecommitdiffstats
path: root/contrib/mutt_xtitle
blob: f9b8a23ff088a88abca46ec12637cd2e21a8b87a (plain)
1
2
3
4
5
6
7
8
9
#!/bin/sh
# Demonstration of format string pipes. Sets the xterm title and returns the
# string unchanged.
#
# Example usage:
# set status_format="mutt_xtitle '%r %f (%L) [Msgs:%?M?%M/?%m%?n? New:%n?%?d? Del:%d?%?F? Flag:%F?%?t? Tag:%t?%?p? Post:%p?%?b? Inc:%b?]'|"

printf "\033]0;$1\007" > /dev/tty
echo "$1"