Back Quotation

技術系のネタとかメモとかテキトーに書いていく

Linux 環境メモ

arch

新規ユーザ用 テンプレ

su 
cd /etc/skel

curl -o .git-prompt.sh     https://raw.githubusercontent.com/git/git/master/contrib/completion/git-prompt.sh
curl -o .git-completion.sh     https://raw.githubusercontent.com/git/git/master/contrib/completion/git-completion.bash

/etc/skel/.bashrc に追加

alias ls='ls --color=auto'
alias ll='ls -alF'
alias la='ls -A'
alias l='ls -CF'
alias libup='pacman -Syu'

if [ -f ~/.git-completion.sh ]; then
    source ~/.git-completion.sh
fi
if [ -f ~/.git-prompt.sh ]; then
    source ~/.git-prompt.sh
fi
GIT_PS1_SHOWDIRTYSTATE=true
GIT_PS1_SHOWUNTRACKEDFILES=true
GIT_PS1_SHOWSTASHSTATE=true
GIT_PS1_SHOWUPSTREAM=auto

PS1='\[\e[44m\]  \u \[\e[34;49m\]\[\e[37;49m\]\[\e[30;47m\] \t \[\e[0;37m\]\[\e[36m\]\[\e[30;46m\] \w \[\e[0;36m\] \[\e[0m\]$(__git_ps1 "\[\e[33;49m\]\[\e[30;43m\]  %s \[\e[33;49m\]")\[\033[00m\]\n '

font: CaskaydiaCove NF Mono