add starbound sync scripts, work on other stuff
This commit is contained in:
parent
99515b1f6d
commit
7db458b4f2
2
env/wm/bspwmrc
vendored
2
env/wm/bspwmrc
vendored
|
@ -2,7 +2,7 @@
|
|||
|
||||
source "$DOTFILES_PATH/variables.bash"
|
||||
|
||||
source "$DOTFILES_PATH/wm/bspwm_config"
|
||||
source "$DOTFILES_PATH/env/wm/bspwm_config"
|
||||
source "$DOTFILES_PATH/scripts/get_color.sh"
|
||||
source "$DOTFILES_PATH/scripts/get_x_fonts.sh"
|
||||
|
||||
|
|
|
@ -34,6 +34,7 @@ pacaur -S \
|
|||
urxvt-perls-git \
|
||||
mutt procmail msmtp \
|
||||
ncmpcpp mpd \
|
||||
rsync \
|
||||
--noconfirm --noedit
|
||||
|
||||
# sudo ln -s /usr/bin/google-chrome-unstable /usr/bin/chrome
|
||||
|
|
9
scripts/syncs/starbound_download.sh
Executable file
9
scripts/syncs/starbound_download.sh
Executable file
|
@ -0,0 +1,9 @@
|
|||
#!/usr/bin/env sh
|
||||
|
||||
LOCAL_STORAGE_DIR="$HOME/.local/share/Steam/steamapps/common/Starbound/storage"
|
||||
REMOTE_STORAGE_HOST_DIR="lytedev.io:~/games/sync/starbound"
|
||||
|
||||
mkdir -p "$LOCAL_STORAGE_DIR"
|
||||
|
||||
rsync -tr "$REMOTE_STORAGE_HOST_DIR" "$LOCAL_STORAGE_DIR/player"
|
||||
rsync -tr "$REMOTE_STORAGE_HOST_DIR" "$LOCAL_STORAGE_DIR/universe"
|
7
scripts/syncs/starbound_upload.sh
Executable file
7
scripts/syncs/starbound_upload.sh
Executable file
|
@ -0,0 +1,7 @@
|
|||
#!/usr/bin/env sh
|
||||
|
||||
LOCAL_STORAGE_DIR="$HOME/.local/share/Steam/steamapps/common/Starbound/storage"
|
||||
REMOTE_STORAGE_HOST_DIR="lytedev.io:~/games/sync/starbound"
|
||||
|
||||
rsync -tr "$LOCAL_STORAGE_DIR/player" "$REMOTE_STORAGE_HOST_DIR"
|
||||
rsync -tr "$LOCAL_STORAGE_DIR/universe" "$REMOTE_STORAGE_HOST_DIR"
|
Reference in a new issue