gnome-terminal : 새 탭에서 디렉토리 추적


37

아치 리눅스를 사용하고 있으며 새 터미널 탭을 열면 항상로 이동합니다 $HOME. 새 탭을 열 때 이전에 있던 디렉토리에서 쉘이 열리도록하려면 어떻게해야합니까?

답변:


49

이 문제와 관련된 버그 가 있습니다

.bashrc또는에 다음 줄을 추가하기 만하면됩니다 .zshrc.

. /etc/profile.d/vte.sh

적어도 Arch에서는 스크립트가 bash 또는 zsh를 실행 중인지 확인하고 그렇지 않은 경우 종료합니다.


1
에 추가 된 export PROMPT_COMMAND=...경우 가 아니라면,에 추가 된 경우를 제외하고는 효과가 없을 수도 있습니다 .bashrc.
swalog

2
/etc/profile.d/vte.shPROMPT_COMMAND변수를 재정의합니다 . 이 문제를 해결하려면, 당신은 수정할 수 vte.sh,과와 부분 변경 PROMPT_COMMAND="__vte_prompt_command"PROMPT_COMMAND="${PROMPT_COMMAND};__vte_prompt_command"
swalog

2
나는 이것을 올바른 장소에두기 위해주의를 기울 였고 스크립트가 있는지 등을 확인했지만 원하는 효과가 없습니다. 그놈 터미널 3.18.1에서 4.2.3-1-ARCH를 실행하고 있습니다. 어떤 제안?
잭 세네갈

내에 추가 할 때 zsh에서는 작동하지 않습니다 .zshrc. oh-my-zsh를 사용하고 있는데 관련이 있는지 확실하지 않습니다.
Andreas Mueller

1
oh-my-zsh를 사용하고 있습니다. 나는 최대 몇 주를 기준으로 아치에 대한 최신 정보를 얻었습니다. 내 dotfile
korylprince

7

수퍼 유저 의이 해키 솔루션을 크로스 포스트 할 수도 있습니다 .

[This]는 모든 명령 (IOMO를 다치게하지 않음) 후에 현재 폴더를 파일에 저장하고 저장된 현재 폴더에서 새 터미널을 엽니 다.

.zshrc [또는 .bashrc ]에 다음을 추가하십시오 .

# emulate bash PROMPT_COMMAND (only for zsh)
precmd() { eval "$PROMPT_COMMAND" }
# open new terminal in same dir
PROMPT_COMMAND='pwd > "${HOME}/.cwd"'
[[ -f "${HOME}/.cwd" ]] && cd "$(< ${HOME}/.cwd)"

창을 열 때 마지막으로 사용한 디렉토리에 저장됩니다 .


나를 위해 일했다. Solus Linux, gnome-terminal 및 zshell.
psparrow

나도 잘 작동합니다. 기본 Elementary OS 0.4.1 Loki 터미널을 사용하고 있습니다. 감사합니다.
Rafael Berro

0

@swalog 는 프롬프트와 터미널 제목을 수정하지 않으면 서 불필요한 부분을 모두 없애기 위해 자신의 의견 에 영감을주었습니다 vte.sh. 을 사용하지 않으므로 관련 코드를 zsh제거했습니다 zsh.

# Copyright © 2006 Shaun McCance <shaunm@gnome.org>
# Copyright © 2013 Peter De Wachter <pdewacht@gmail.com>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.

# 28 Sep 2019: Tukusej’s Sirs modified this by stripping down all unnecessary parts for his usage
# (src: https://unix.stackexchange.com/questions/93476/gnome-terminal-keep-track-of-directory-in-new-tab#comment219157_93477)

# Not an interactive shell?
[[ $- == *i* ]] || return 0

# Not running under vte?
[ "${VTE_VERSION:-0}" -ge 3405 ] || return 0

__vte_urlencode() (
    # This is important to make sure string manipulation is handled
    # byte-by-byte.
    LC_ALL=C
    str="$1"
    while [ -n "$str" ]; do
        safe="${str%%[!a-zA-Z0-9/:_\.\-\!\'\(\)~]*}"
        printf "%s" "$safe"
        str="${str#"$safe"}"
        if [ -n "$str" ]; then
            printf "%%%02X" "'$str"
            str="${str#?}"
        fi
    done
)

__vte_prompt_command() {
    local command=$(HISTTIMEFORMAT= history 1 | sed 's/^ *[0-9]\+ *//')
    command="${command//;/ }"
    local pwd='~'
    printf "\033]7;file://%s%s\007" "${HOSTNAME:-}" "$(__vte_urlencode "${PWD}")"
}

case "$TERM" in
    xterm*|vte*)
        [ -n "$BASH_VERSION" ] && PROMPT_COMMAND="${PROMPT_COMMAND};__vte_prompt_command"
        ;;
esac
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.