This commit is contained in:
josh
2018-08-24 21:43:38 +03:00
parent 641da4c1b4
commit 6d7cd2f827
49 changed files with 1299 additions and 0 deletions

29
dotfiles/.bashrc Executable file
View File

@@ -0,0 +1,29 @@
[[ $- != *i* ]] && return
set -o vi
unset HISTFILE
export LESSHISTFILE=-
export PYTHONSTARTUP=~/.pythonrc
export XAUTHORITY=~/.cache/.Xauthority
# 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 piavpn="sh /opt/pia/ruby/ruby.sh /opt/pia/pia_manager/run.rb </dev/null &>/dev/null&"
PS1="\u@\h:\w \$ "