Fix terminal tab title function not including control sequences

This commit is contained in:
2025-11-06 12:30:55 -05:00
parent c5f1be3006
commit 5f2e74623b

View File

@@ -1,8 +1,8 @@
function set_window_title() {
if [ "${PWD}" == $PROJECTS_DIR/* ]; then
echo -ne "Dev - $(basename $PWD)"
echo -ne "\033]0; Toolbox: Development \007"
else
echo -ne "$LOCATION"
echo -ne "\033]0; $LOCATION \007"
fi
}