bashrc: Rename

This commit is contained in:
Bill Niblock 2017-11-13 15:54:20 -05:00
parent 1f6da7eca4
commit 4de10a89fa

View file

@ -28,7 +28,12 @@ complete -F _ssh tssh
#=============================================================================== #===============================================================================
#If redshift wasn't automatically started, this will do it #If redshift wasn't automatically started, this will do it
function tint(){ function tint(){
redshift -l 42.8864500:-78.8783700 -t 5000:4000 & type redshift >/dev/null 2>&1
if [[ $? == 0 ]]; then
redshift -l 42.8864500:-78.8783700 -t 5000:4000 &
else
echo "Redshift not installed"
fi
} }
# Function for keeping ssh-agent happy # Function for keeping ssh-agent happy
function yssh(){ function yssh(){
@ -64,7 +69,7 @@ function sojourner_tmux(){
# Attack to the Sojourner session # Attack to the Sojourner session
tmux attach -t Sojourner tmux attach -t Sojourner
else else
echo "Nope. No tmux. Install that sucka" echo "Tmux not installed."
fi fi
} }
#=============================================================================== #===============================================================================