ギリギリジンジン

なんでもギリギリだ。

Ubuntu22のターミナルのプロンプトがやたらと長いから短くする

username@hostname:/lib/gnome-settings-daemon-3.0/gtk-modules$ pwd
/lib/gnome-settings-daemon-3.0/gtk-modules

プロンプトが長い!邪魔!

~/.bashrcを編集する。\wを\Wにする。小文字を大文字。

    PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ '
↓
    PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\W\[\033[00m\]\$ '

設定を反映する。

$ source ~/.bashrc 

こうなった。

username@hostname:gtk-modules$ pwd
/lib/gnome-settings-daemon-3.0/gtk-modules

参考 ↓

qiita.com