30 lines
755 B
Bash
Executable File
30 lines
755 B
Bash
Executable File
[[ $- != *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 \$ "
|
|
|