Estou no Arch linux e, quando abro uma nova aba de terminal, ela sempre acessa $HOME
. Como posso fazer isso para que, quando abro uma nova guia, abra o shell no diretório em que eu estava anteriormente?
Estou no Arch linux e, quando abro uma nova aba de terminal, ela sempre acessa $HOME
. Como posso fazer isso para que, quando abro uma nova guia, abra o shell no diretório em que eu estava anteriormente?
Respostas:
Há um erro relacionado a esse problema
Tudo que você precisa fazer é adicionar a seguinte linha ao seu .bashrc
ou .zshrc
:
. /etc/profile.d/vte.sh
Pelo menos no Arch, o script verifica se você está executando o bash ou o zsh e sai se não estiver.
/etc/profile.d/vte.sh
substitui a PROMPT_COMMAND
variável Para corrigir isso, você pode modificar vte.sh
e alterar a parte com PROMPT_COMMAND="__vte_prompt_command"
aPROMPT_COMMAND="${PROMPT_COMMAND};__vte_prompt_command"
.zshrc
. Estou usando o oh-my-zsh, não tenho certeza se isso está relacionado.
Também pode cruzar essa solução hacky do superusuário:
[Isso] salva a pasta atual em um arquivo, após cada comando (Não causa muito IMO) e abre um novo terminal na pasta atual salva.
adicione o seguinte a .zshrc [ou .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)"
Observe que isso também o colocará no seu último diretório usado ao abrir uma nova janela .
O @swalog me inspirou em seu comentário a remover todas as partes desnecessárias do vte.sh
tempo, sem modificar o prompt nem o título do terminal. Observe que eu não uso zsh
, portanto, removi o zsh
código relacionado.
# 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
export PROMPT_COMMAND=...
, se tal coisa já existir no seu.bashrc
.