fix some things, work on a steam alias for laptop

This commit is contained in:
Daniel Flanagan 2016-07-31 21:07:59 -05:00
parent 46d6ad4258
commit 255208d441
3 changed files with 9 additions and 2 deletions

3
env/sh/bashrc vendored
View file

@ -57,6 +57,9 @@ if [ -t 0 ]; then
# arch aliases # arch aliases
alias archupdate="pacaur -Syyu --noconfirm --noedit" alias archupdate="pacaur -Syyu --noconfirm --noedit"
# games aliases
# alias steam="LD_PRELOAD='/usr/$LIB/libstdc++.so.6 /usr/$LIB/libgcc_s.so.1 /usr/$LIB/libxcb.so.1 /usr/$LIB/libgpg-error.so' steam"
stopbar() { stopbar() {
if [[ -f "$BAR_PID_FILE" ]]; then if [[ -f "$BAR_PID_FILE" ]]; then
echo echo

View file

@ -2,6 +2,10 @@
source "$DOTFILES_PATH/variables.bash" source "$DOTFILES_PATH/variables.bash"
if [ -f "$HOME/.bashrc_env" ]; then
source "$HOME/.bashrc_env"
fi
export BAR_RUNNING=1 export BAR_RUNNING=1
function killbar() { function killbar() {
export BAR_RUNNING=0 export BAR_RUNNING=0

View file

@ -5,5 +5,5 @@ REMOTE_STORAGE_HOST_DIR="lytedev.io:~/games/sync/starbound"
mkdir -p "$LOCAL_STORAGE_DIR" mkdir -p "$LOCAL_STORAGE_DIR"
rsync -tr "$REMOTE_STORAGE_HOST_DIR" "$LOCAL_STORAGE_DIR/player" rsync -tr "$REMOTE_STORAGE_HOST_DIR/player" "$LOCAL_STORAGE_DIR"
rsync -tr "$REMOTE_STORAGE_HOST_DIR" "$LOCAL_STORAGE_DIR/universe" rsync -tr "$REMOTE_STORAGE_HOST_DIR/universe" "$LOCAL_STORAGE_DIR"