Bin: Move binary files to .local, add symlink

This commit is contained in:
2017-12-26 18:11:38 -06:00
parent 92c53a5db9
commit 572df071b6
19 changed files with 1 additions and 0 deletions

27
.local/bin/.bashrc-global Normal file
View File

@@ -0,0 +1,27 @@
#!/bin/bash
#
# ~/.bashrc
#
# If not running interactively, don't do anything
[[ $- != *i* ]] && return
# Sometimes you can't change your shell. Sometimes you have to implement hacky
# workarounds
if [ -f ~/.bash-to-zsh ]; then
export SHELL=$(which zsh)
exec zsh
fi
# Source /etc/profile
source /etc/profile
# Source .profile
if [ -f ~/.profile ]; then
source ~/.profile
fi
# Source the bash-specific rc
if [ -f ~/.bin/bashrc.sh ]; then
source ~/.bin/bashrc.sh
fi