This commit is contained in:
josh
2018-08-24 21:44:45 +03:00
parent 6d7cd2f827
commit 3ffcc3eb1c
11 changed files with 69 additions and 75 deletions

22
.bashrc
View File

@@ -7,13 +7,23 @@ export LESSHISTFILE=-
export PYTHONSTARTUP=~/.pythonrc
export XAUTHORITY=~/.cache/.Xauthority
alias ls='ls --color=auto'
alias diff='diff --color=auto'
alias grep='grep --color=auto'
# Import colorscheme from "wal" asynchronously
# & # Run the process in the background.
# ( ) # Hide shell job control messages.
(cat ~/.cache/wal/sequences &)
# Alternative (blocks terminal for 0-3ms)
cat ~/.cache/wal/sequences
alias ls="ls --color=auto"
alias diff="diff --color=auto"
alias grep="grep --color=auto"
alias graphs="ssh net@192.168.1.137"
alias installed_packages='comm -23 <(pacman -Qeq | sort) <(pacman -Qgq base base-devel | sort)'
alias unused_packages='pacman -Qtdq'
alias installed_packages="comm -23 <(pacman -Qeq | sort) <(pacman -Qgq base base-devel | sort)"
alias unused_packages="pacman -Qtdq"
PS1='\u@\h:\w \$ '
alias piavpn="sh /opt/pia/ruby/ruby.sh /opt/pia/pia_manager/run.rb </dev/null &>/dev/null&"
PS1="\u@\h:\w \$ "