mirror of
https://github.com/DictXiong/dotfiles.git
synced 2024-11-24 11:56:59 +08:00
Dict Xiong
ff8ac21424
* update.sh: fetch will prune * log: use hostname directly * refactor log.py to logger.sh (#31) * logger.sh: refactor log.py to bash script * update.sh use beacon; ci test beacon * install.sh: install dep first * install.sh: DFS_UPDATED_RET=85 * more beacon; use stderr * remove py3 dep * install.sh: remove py3 * install.sh: -s|--secure * async log; beacon add sys.login * update use sync beacon * fix ci minor bug; macos: uuidgen/e2fsprogs * logger.sh: not need to use uuid5 * bug fix * dfs err_return * common.sh: post_log and post_beacon will check #args * bug fix * zshrc: fix locale when C.UTF-8 not exists * WIP: combine install -a and tools/ scripts * finish combination; get_os_name; macos.sh * test.ci: now all use -a to install deps * bug fix * bug fix; ci: install.sh run with -x * install.sh: bug fix that re-run install.sh after updated needs orgin args * format Co-authored-by: xiongdian.me <xiongdian.me@bytedance.com>
35 lines
787 B
Bash
Executable File
35 lines
787 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
THIS_DIR=$( cd "$( dirname "${BASH_SOURCE[0]:-${(%):-%x}}" )" && pwd )
|
|
source "$THIS_DIR/common.sh"
|
|
|
|
set_mirror()
|
|
{
|
|
# MIRROR=${1:-"mirrors.tuna.tsinghua.edu.cn"}
|
|
# MIRROR=${MIRROR//\//\\\/}
|
|
# sed -i 's/(archive|security).ubuntu.com/${MIRROR}/g' /etc/apt/sources.list
|
|
echo "to do ..."
|
|
}
|
|
|
|
pacman_S()
|
|
{
|
|
pacman -Syu
|
|
# lite
|
|
pacman -S tmux git zsh bash curl vim
|
|
# full
|
|
if [[ -z "$DFS_LITE" ]]; then
|
|
pacman -S wget base-devel mingw-w64-x86_64-toolchain make cmake gcc zip unzip python3 python3-pip man-pages-posix
|
|
fi
|
|
}
|
|
|
|
router()
|
|
{
|
|
case $1 in
|
|
pacman-S ) pacman_S ;;
|
|
set-mirror ) set_mirror $2 ;;
|
|
* ) echo unknown command "$1". available: pacman-S, set-mirror ;;
|
|
esac
|
|
}
|
|
|
|
router $@
|