summaryrefslogblamecommitdiffstats
path: root/bashrc/common/screen.sh
blob: 734ccfbe11393981b5941c6250362b5cc37df61a (plain) (tree)


















                                                                  
# screen shelltitle magic

set_screen_title() {
    # prevent reset_screen_title from calling set_screen_title
    if [[ $BASH_COMMAND != "reset_screen_title" ]]; then
	echo -ne "\ek$(id -un)@$(hostname):${BASH_COMMAND/ *}\e\\"
    fi
}

reset_screen_title() {
    echo -ne "\ek$(id -un)@$(hostname)\e\\"
}

init_preexec_hack() {
    if [[ $TERM == "screen" ]]; then
	export PROMPT_COMMAND=reset_screen_title
	trap set_screen_title DEBUG
    fi
}