14 lines
398 B
Bash
Executable File
14 lines
398 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
git pull origin master;
|
|
git submodule init;
|
|
git submodule sync;
|
|
git submodule update --recursive --remote;
|
|
|
|
tic -x profiles/xterm-256color-italic.terminfo
|
|
tic -x profiles/tmux-256color.terminfo
|
|
|
|
rsync --exclude ".git/" --exclude ".git*" --exclude "install" --exclude "profiles" --exclude "py3status" --exclude "bin/" --exclude "terminal_profile.terminal" -avhE --no-perms . ~
|