터미널 탭에서 name@os 제거

터미널 탭에서 name@os 제거

name@os터미널 탭의 내용을 제거하는 방법은 무엇입니까 ? 공간을 차지합니다.

빨간색 원은 터미널 창에서 필요하지 않은 부분을 나타냅니다.

탭에서 경로를 보고 싶습니다. 어떻게 해야 하나요?

답변1

변경해야 했습니다 .bashrc. 주석 처리된 부분은 원래 배포판(Linux Mint)에서 설정한 방법이었습니다.

case "$TERM" in
xterm*|rxvt*)
  # PS1="\[\e]0;${debian_chroot:+($debian_chroot)}\u@\h: \w\a\]$PS1"
    PS1="\[\e]0;${debian_chroot:+($debian_chroot)}\w\a\]$PS1"
    ;;
*)
    ;;
esac

\u방법사용자그리고 \h의미주인.

기록을 위해 여기에 .bashrc내 정의의 전체 조각이 있습니다 PS1. 첫 번째는 프롬프트를 변경하고 두 번째는 탭을 변경합니다.

# ...

if [ "$color_prompt" = yes ]; then
  # PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ '
    PS1='\[\e[1;37;44m\]>\[\e[00m\] '
else
    PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w\$ '
fi
unset color_prompt force_color_prompt

# If this is an xterm set the title to user@host:dir
case "$TERM" in
xterm*|rxvt*)
  # PS1="\[\e]0;${debian_chroot:+($debian_chroot)}\u@\h: \w\a\]$PS1"
    PS1="\[\e]0;${debian_chroot:+($debian_chroot)}\w\a\]$PS1"
    ;;
*)
    ;;
esac

# ...

관련 정보