darkrc/bashrc

77 lines
2.5 KiB
Bash
Raw Normal View History

# vim: set noexpandtab :miv #
alias hello='echo "Hello :)"'
alias w='watch -t -d -n 1'
alias setclip='xclip -selection c'
alias getclip='xclip -selection clipboard -o'
2019-10-17 17:08:36 +00:00
alias r='ranger'
alias rr='(ranger)'
2019-12-05 10:00:28 +00:00
alias ro='(f=$(tempfile); $(which ranger) --choosefiles $f; rifle $(cat $f); rm $f)'
export HISTIGNORE='ls:clear:history'
# alias cmatrix='cmatrix -b -C `r.choose green red blue white yellow cyan magenta black`'
alias oneko='oneko -speed 20 -fg "#2f2f2f" -cursor 2 -name neko'
alias sakura='oneko -bg "#ffddee" -sakura -name sakura'
alias tmux='tmux -2'
alias pi='ssh pi -t ''tmux a -t home \|\| tmux new-session -s home'''
alias server='ssh server -t ''tmux a -t home \|\| tmux new-session -s home'''
alias ltc='getclip | luac -l -'
2018-03-09 13:57:04 +00:00
alias sign='gpg --armor --no-version --detach-sign --local-user darkwiiplayer'
2018-11-07 12:30:49 +00:00
alias workspace='cd ~/workspace'
2019-02-25 12:47:29 +00:00
alias shit='git'
alias ranger='source ranger'
2019-06-15 12:44:48 +00:00
alias ta='tmux a -t'
2019-12-17 16:13:48 +00:00
alias co='checkout'
2020-01-10 10:46:08 +00:00
alias qed='[ $RANDOM -ge $((32767 / 100 * 10)) ] && echo Quod Erat Demonstrandum || echo Quo Errat Demonstrator'
2020-01-30 14:46:47 +00:00
alias u='unicode'
2018-11-07 12:30:49 +00:00
stty -ixon
2017-11-04 09:19:44 +00:00
# Enable Vi editing mode
set -o vi
2018-11-06 12:12:15 +00:00
2020-01-27 10:04:35 +00:00
rlevel() {
if [ -n "$RANGER_LEVEL" ]
then if [ "$RANGER_LEVEL" = 1 ]
then
2020-01-31 11:13:45 +00:00
/bin/echo -ne "\033[00;31m$1 "
2020-01-27 10:04:35 +00:00
else
2020-01-31 12:35:40 +00:00
/bin/echo -ne "\033[00;31m$RANGER_LEVEL×$1 "
2020-01-27 10:04:35 +00:00
fi
fi
}
2020-01-31 11:13:45 +00:00
export PS1normal='\[\033[00;34m\]┌─╼ $(rlevel ●)\[\033[01;35m\]\u\[\033[00;34m\]@\[\033[01;35m\]\h \[\033[00;33m\]\$ \[\033[01;35m\]\w \[\033[01;34m\]`find -mindepth 1 -maxdepth 1 -type d | wc -l`\[\033[00;34m\]d \[\033[01;32m\]`find -maxdepth 1 -type f | wc -l`\[\033[00;32m\]f\[\033[00m\] $(gitprompt)
2018-11-06 19:02:35 +00:00
\[\033[00;34m\]└╼ \[\033[00m\]'
export PS1tiny='$(rlevel 🥆)\[\033[00;37m\]$(dirs +0) \[\033[00;34m\]‣ \[\033[00m\]'
2020-01-31 11:13:45 +00:00
export PS1nogit='\[\033[00;34m\]┌─╼ $(rlevel)\[\033[01;35m\]\u\[\033[00;34m\]@\[\033[01;35m\]\h \[\033[00;33m\]\$ \[\033[01;35m\]\w \[\033[01;34m\]`find -mindepth 1 -maxdepth 1 -type d | wc -l`\[\033[00;34m\]d \[\033[01;32m\]`find -maxdepth 1 -type f | wc -l`\[\033[00;32m\]f\[\033[00m\]
\[\033[00;34m\]└╼ \[\033[00m\]'
2020-01-31 12:35:40 +00:00
export PS1tinygit='\[\033[00;37m\]$(gitprompt || dirs +0)
\[\033[00;34m\]$(rlevel 🥆)\[\033[00m\]'
2020-01-31 11:13:45 +00:00
prompt() {
name=PS1$1
if [ -z $1 ] || [ -z "${!name}" ]; then
name=PS1normal
fi
export PS1set=$1
PS1=${!name}
}
prompt $PS1set
2018-12-23 20:40:14 +00:00
cd() {
if [ -f .bashcdout ]
then
source .bashcdout
fi
builtin cd "$@" || return
if [ -f .bashcd ]
then
source .bashcd
fi
}
2019-02-25 12:47:29 +00:00
export GPG_TTY="$(tty)" # This is necessary for the gpg-agent, apparently