.bashrc
trwnh opened this issue · 0 comments
trwnh commented
#
# ~/.bashrc
#
# If not running interactively, don't do anything
[[ $- != *i* ]] && return
alias ls='ls --color=auto'
PS1='$(tput sc; tput setab 7; tput setaf 0; printf "%*s%s" $COLUMNS "\u@\h"; tput rc; tput setab 7; tput setaf 0;)\w$(tput sgr0)\n\$ '
PATH="~/bin:$PATH"
alias start='systemctl start'
alias stop='systemctl stop'
alias restart='systemctl restart'
alias reload='systemctl reload'
alias reloadd='systemctl daemon-reload'
alias enable='systemctl enable'
alias disable='systemctl disable'
alias status='systemctl status'