3 source $FEISTY_MEOW_SCRIPTS/core/functions.sh
5 # just saying this is an array...
6 #declare -a PRIOR_TERMINAL_TITLES
8 # set the stack position if not already set.
9 if [ -z "$PTT_STACK_INDEX" ]; then
10 # this variable records where we will push new items on the stack.
14 # returns okay (0) if the stack is empty, or non-zero if not empty.
15 function ptt_stack_empty()
17 if [ -z "$PTT_STACK_INDEX" ]; then
18 # fix the index value.
22 test $PTT_STACK_INDEX -le 0
26 # a debugging function that should never have been necessary.
27 # a little bit furious the restore is failing during regenerate right now.
28 function show_terminal_titles()
31 echo "[terminal title list now has...]"
32 local i=${#PRIOR_TERMINAL_TITLES[@]}
33 if ptt_stack_empty; then
34 echo the terminal title list is empty.
37 echo "ent #$i: '${PRIOR_TERMINAL_TITLES[$i]}'"
43 # adds an entry into the stack of terminal titles.
44 function push_ptt_stack()
46 PRIOR_TERMINAL_TITLES[$PTT_STACK_INDEX]="$*"
48 #echo stack index incremented and now at $PTT_STACK_INDEX
52 function pop_ptt_stack()
54 if [ $PTT_STACK_INDEX -le 0 ]; then
55 echo nothing to pop from prior terminal titles stack.
58 #echo stack index decremented and now at $PTT_STACK_INDEX
59 CURRENT_TERM_TITLE="${PRIOR_TERMINAL_TITLES[$PTT_STACK_INDEX]}"
60 #echo "got the last title as '$CURRENT_TERM_TITLE'"
65 # puts a specific textual label on the terminal title bar.
66 # this doesn't consider any previous titles; it just labels the terminal.
67 # the title may not be visible in some window managers.
68 function set_terminal_title()
71 # if we weren't given a title, then use just the hostname. this is the degraded functionality.
72 if [ -z "${title}" ]; then
75 echo -n -e "\033]0;${title}\007"
78 # reads the current terminal title, if possible, and saves it to our stack of titles.
79 function save_terminal_title()
81 # save the former terminal title if we're running in X with xterm.
82 which xprop &>/dev/null
84 # make sure we're actually using xterm *and* that we have a window ID.
85 if [[ "$TERM" =~ .*"xterm".* && ! -z "$WINDOWID" ]]; then
86 local prior_title="$(xprop -id $WINDOWID | perl -nle 'print $1 if /^WM_NAME.+= \"(.*)\"$/')"
87 if [ ! -z "$prior_title" ]; then
88 #echo "saving prior terminal title as '$prior_title'"
89 push_ptt_stack "$prior_title"
91 #echo "not saving prior terminal title which was empty"
97 # using our stored terminal title, this replaces the title on the terminal.
98 function restore_terminal_title()
100 # we don't want to emit anything extra if this is being driven by git.
101 #hmmm... this could be a problem?
102 # if [ -z "$(echo $* | grep git)" ]; then
104 # run the terminal labeller to restore the prior title, if there was one.
105 if ! ptt_stack_empty; then
107 #echo "restoring prior terminal title of '$CURRENT_TERM_TITLE'"
108 set_terminal_title "$CURRENT_TERM_TITLE"
112 # sets a title for the terminal with the hostname and other details.
113 function label_terminal_with_info()
115 # we only label the terminal anew if there's no saved title.
116 if ptt_stack_empty; then
117 pruned_host=$(echo $HOSTNAME | sed -e 's/^\([^\.]*\)\..*$/\1/')
118 date_string=$(date +"%Y %b %e @ %T")
120 if [ -z "$user" ]; then
121 # try snagging the windoze name.
124 new_title="-- $user@$pruned_host -- [$date_string]"
125 set_terminal_title "$new_title"
127 # use the former title; paste it back up there just in case.
128 #echo "showing prior terminal title since there was a prior title!"
130 #echo "using prior terminal title of '$CURRENT_TERM_TITLE'"
131 set_terminal_title "$CURRENT_TERM_TITLE"
132 push_ptt_stack "$CURRENT_TERM_TITLE"