You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

488 lines
11 KiB

  1. #!/bin/sh
  2. set -e
  3. # setup.sh --- 10sr setup script
  4. # 2014, 10sr. Unlicensed <http://unlicense.org>
  5. __setups="shrc_common gitconf tmux scripts darwin dirs selfupdate windirs dotfiles env"
  6. __homelocal="$HOME/.local"
  7. __homevar="$HOME/.var"
  8. __dotfiles_dir_default="$HOME/10sr_dotfiles"
  9. _current_date=`date`
  10. # TODO: how to give args to command?
  11. #################################################################
  12. _dotfiles_url_base=https://raw.githubusercontent.com/10sr/dotfiles/master/
  13. if test -z "$DOTFILES_DIR"
  14. then
  15. DOTFILES_DIR="$__dotfiles_dir_default"
  16. fi
  17. ismsys=
  18. iscygwin=
  19. iswindows=
  20. isdarwin=
  21. isfreebsd=
  22. isbsd=
  23. islinux=
  24. ###########################
  25. # utils
  26. ##########################33
  27. # Utilities
  28. __tput_bold=`tput bold || true`
  29. __tput_default=`tput sgr0 || true`
  30. __tput_yellow=`tput setaf 3 || true`
  31. _msg(){
  32. echo ">> ${__tput_bold}$*${__tput_default}"
  33. }
  34. _warn(){
  35. echo ">>> ${__tput_yellow}${__tput_bold}$*${__tput_default}" 1>&2
  36. }
  37. _die(){
  38. _warn "$@"
  39. exit 1
  40. }
  41. _download(){
  42. # download <url> <file>
  43. if type wget >/dev/null 2>&1
  44. then
  45. wget $__my_wget_options "$1" -O "$2"
  46. elif type curl >/dev/null 2>&1
  47. then
  48. curl --url "$1" --output "$2"
  49. else
  50. _warn "No download program found."
  51. _die "Install wget or curl."
  52. fi
  53. }
  54. # Detect systems
  55. detect_systems(){
  56. ismsys=false
  57. iscygwin=false
  58. iswindows=false
  59. isdarwin=false
  60. isfreebsd=false
  61. isbsd=false
  62. islinux=false
  63. # $OSTYPE is another choice. which is better?
  64. # NOTE: sh on FreeBSD does not define OSTYPE
  65. case `uname` in
  66. (MINGW*) ismsys=true ;;
  67. (CYGWIN*) iscygwin=true ;;
  68. (Darwin*) isdarwin=true ;;
  69. (FreeBSD*) isfreebsd=true ;;
  70. (Linux*) islinux=true ;;
  71. esac
  72. ($ismsys || $iscygwin) && iswindows=true
  73. # is this true?
  74. ($isdarwin || $isfreebsd) && isbsd=true
  75. _msg "Detecting the system...done"
  76. }
  77. ################################
  78. # setups
  79. ###############################
  80. # setup selfupdate
  81. setup_selfupdate(){
  82. _msg "Download latest setup.sh from 10sr repository."
  83. if test -z "$1"
  84. then
  85. _warn "Filename for setup script is not given"
  86. echo "usage: setup.sh selfupdate <filename>"
  87. _die "Abort"
  88. fi
  89. mkdir -vp "`dirname $1`"
  90. _download $_dotfiles_url_base/setup.sh "$1"
  91. chmod +x "$1"
  92. }
  93. ##################################
  94. # setup dotfiles
  95. setup_dotfiles(){
  96. _msg "Prepare latest dotfiles."
  97. mkdir -p "$DOTFILES_DIR"
  98. if test -d "$DOTFILES_DIR"/.git
  99. then
  100. # if git repository found, always skip
  101. _warn "Git repository $DOTFILES_DIR already exists"
  102. _warn "Skipping"
  103. elif test "$1" = "--git"
  104. then
  105. # git clone
  106. _msg "Option \"--git\" has been given. Using git"
  107. _msg "Checking github.com connectivity"
  108. ssh git@github.com 2>/dev/null && true
  109. if test $? -eq 1
  110. then
  111. _git_clone_url=git@github.com:10sr/dotfiles.git
  112. _msg "Authentication succeeded"
  113. else
  114. _git_clone_url=https://github.com/10sr/dotfiles.git
  115. _msg "Authentication failed"
  116. fi
  117. _msg "Git cloning $_git_clone_url"
  118. git clone $_git_clone_url "$DOTFILES_DIR"
  119. else
  120. for f in $@
  121. do
  122. _msg "Prepareing $f"
  123. mkdir -p "`dirname $DOTFILES_DIR/$f`"
  124. _download $_dotfiles_url_base/$f "$DOTFILES_DIR"/$f
  125. done
  126. fi
  127. }
  128. #############################
  129. # setup shrc_common
  130. # Generate ~/.shrc.common, which contains system infos and is sourced from
  131. # setup.sh (this file) and dotfiles/shrc .
  132. # this variable must consistent with shrc
  133. __shrc_common="$HOME/.shrc.common"
  134. setup_shrc_common(){
  135. _msg "Generate $__shrc_common"
  136. test -f "$__shrc_common" && rm -- "$__shrc_common"
  137. cat <<__EOC__ >"$__shrc_common"
  138. #!/bin/sh
  139. # $__shrc_common
  140. # Automatically generated by $0 at $_current_date
  141. ismsys=$ismsys
  142. iscygwin=$iscygwin
  143. iswindows=$iswindows
  144. isdarwin=$isdarwin
  145. isfreebsd=$isfreebsd
  146. isbsd=$isbsd
  147. islinux=$islinux
  148. __homelocal="$__homelocal"
  149. __homevar="$__homevar"
  150. __EOC__
  151. }
  152. ################################
  153. # setup gitconf
  154. setup_gitconf(){
  155. _msg "Configure git environment"
  156. if ! command -v git >/dev/null
  157. then
  158. _msg "Git program not found"
  159. return 0
  160. fi
  161. _gc="git config --global"
  162. $_gc user.name '10sr'
  163. $_gc user.email '8slashes+git@gmail.com'
  164. $_gc core.autocrlf false
  165. $_gc core.excludesfile '~/.gitignore'
  166. $_gc color.ui auto
  167. $_gc status.relativePaths false
  168. $_gc status.showUntrackedFiles normal
  169. $_gc log.date iso
  170. command -v xz >/dev/null && \
  171. $_gc tar.txz.command "xz -c"
  172. $_gc push.default current
  173. $_gc alias.graph "log --graph --date-order -C -M --pretty=tformat:\"%C(green)%h%C(reset) %C(white)%ad%C(reset) %C(red)%an%C(reset)%C(yellow)%d%C(reset) %C(white bold)%s%C(reset)\" --all --date=iso -n 499"
  174. $_gc alias.st "status -s -b"
  175. $_gc alias.b "branch"
  176. $_gc alias.sb "show-branch"
  177. $_gc alias.ci "commit --verbose"
  178. $_gc alias.co "checkout"
  179. $_gc alias.cim "commit --verbose -m"
  180. $_gc alias.di "diff --color"
  181. $_gc alias.me "merge --no-ff --stat --verbose"
  182. $_gc alias.gr "grep -n"
  183. $_gc alias.ls "ls-files"
  184. # $_gc alias.ls "ls-files -v --full-name"
  185. # $_gc alias.ls "status -u -s ."
  186. $_gc alias.sl "!sl"
  187. # $_gc alias.my-ls "ls-files | xargs ls"
  188. # $_gc alias.ll "!git ls-files | xargs ls -l -CFG --color=auto --time-style=long-iso"
  189. $_gc alias.addi "add -i"
  190. $_gc alias.clean-p "!test -z \"\$(git status -s -uno)\""
  191. # alias open-branch and close-branch, which will be useful for topic branch
  192. # workflow
  193. _git_open_branch="checkout -b"
  194. _git_close_branch="!sh -cx 'git stash && \
  195. git checkout master && git merge --no-ff --stat --verbose -'"
  196. $_gc alias.open-branch "$_git_open_branch"
  197. $_gc alias.close-branch "$_git_close_branch"
  198. $_gc alias.o "$_git_open_branch"
  199. $_gc alias.c "$_git_close_branch"
  200. $_gc alias.todo "grep -nH -E -i 'todo:|note:|fixme:'"
  201. #$_gc alias.wc "!git ls-files -z | xargs -0 wc"
  202. # $_gc push.default "simple"
  203. if $iswindows; then
  204. $_gc core.fileMode false
  205. fi
  206. }
  207. #############################
  208. # setup tmux
  209. setup_tmux(){
  210. tmux_conf_local="$HOME/.tmux.conf.local"
  211. _msg "Generate $tmux_conf_local"
  212. case "`hostname`" in
  213. arch-aspireone)
  214. tmux_bg_color=yellow
  215. tmux_fg_color=black
  216. ;;
  217. arch-mba)
  218. tmux_bg_color=cyan
  219. tmux_fg_color=black
  220. ;;
  221. newkiwi)
  222. tmux_bg_color=magenta
  223. tmux_fg_color=white
  224. ;;
  225. debian-vb-win7-opti)
  226. tmux_bg_color=red
  227. tmux_fg_color=white
  228. ;;
  229. *)
  230. tmux_bg_color=green
  231. tmux_fg_color=black
  232. ;;
  233. esac
  234. cat <<__EOC__ >"$tmux_conf_local"
  235. # $tmux_conf_local
  236. # Automatically generated by $0 at $_current_date
  237. set -g status-right "${USER}@$(hostname) | #(tmux -V) "
  238. set -g status-bg $tmux_bg_color
  239. set -g status-fg $tmux_fg_color
  240. set -g mode-bg $tmux_bg_color
  241. set -g mode-fg $tmux_fg_color
  242. set -g pane-active-border-fg $tmux_bg_color
  243. __EOC__
  244. _tmux_conf="$HOME"/.tmux.conf
  245. _msg "Prepare $_tmux_conf"
  246. if test -f "$_tmux_conf"
  247. then
  248. _warn "Tmux config file found. Skipping"
  249. else
  250. echo "source \"$DOTFILES_DIR/tmux.conf\"" >>"$_tmux_conf"
  251. fi
  252. setup_dotfiles tmux.conf
  253. }
  254. ###############################
  255. # setup emacs
  256. setup_emacs(){
  257. _msg "Setup emacs init.el"
  258. _emacs_dir="$HOME"/.emacs.d
  259. mkdir -vp "$_emacs_dir"
  260. _emacs_init_el="$_emacs_dir"/init.el
  261. if test -f "$_emacs_init_el"
  262. then
  263. _warn "Emacs init.el found. Skipping"
  264. else
  265. cat <<__EOC__ >>"$_emacs_init_el"
  266. (and (file-readable-p "$DOTFILES_DIR/emacs.el")
  267. (load-file "$DOTFILES_DIR/emacs.el"))
  268. __EOC__
  269. fi
  270. setup_dotfiles emacs.el
  271. }
  272. ##################################
  273. # setup vim
  274. setup_vim(){
  275. _msg "Setup vimrc"
  276. _vimrc="$HOME"/.vimrc
  277. if test -f "$_vimrc"
  278. then
  279. _warn "Vim rcfile found. Skipping"
  280. else
  281. cat <<__EOC__ >>"$_vimrc"
  282. if filereadable(expand('$DOTFILES_DIR/vimrc'))
  283. source $DOTFILES_DIR/vimrc
  284. endif
  285. __EOC__
  286. fi
  287. setup_dotfiles vimrc
  288. }
  289. ##############################
  290. # setup scripts
  291. _fetch_script(){
  292. # _fetch_script <url> <binname>
  293. url="$1"
  294. name="$2"
  295. dst="$HOME/.local/bin/$name"
  296. test -f "$dst" && return 0
  297. command -v "$name" >/dev/null && return 0
  298. if _download "$url" "$dst"
  299. then
  300. chmod u+x "$dst"
  301. else
  302. test -f "$dst" && rm -- "$dst"
  303. fi
  304. }
  305. setup_scripts(){
  306. _msg "Download some utility scripts"
  307. _fetch_script \
  308. https://gist.github.com/10sr/6852317/raw/colortable16.sh colortable16.sh
  309. _fetch_script \
  310. https://gist.github.com/10sr/6852331/raw/256colors2.pl 256colors2.pl
  311. _fetch_script \
  312. https://github.com/icy/pacapt/raw/ng/pacapt pacapt
  313. }
  314. ################################
  315. # setup darwin
  316. __darwin_set_defaults(){
  317. $isdarwin || return 0
  318. # http://appdrill.net/60641/mac-boot-mute.html
  319. #sudo nvram SystemAudioVolume=%80
  320. # add quit entry in menu
  321. defaults write com.apple.finder QuitMenuItem -bool YES
  322. # show full path on titlebar
  323. defaults write com.apple.finder _FXShowPosixPathInTitle -bool YES
  324. # do not show desktop icons
  325. defaults write com.apple.finder CreateDesktop -boolean false
  326. killall Finder
  327. # disable dashboard
  328. #defaults write com.apple.dashboard mcx-disabled -bool YES
  329. }
  330. __darwin_start_daemon(){
  331. $isdarwin || return 0
  332. test "`launchctl getenv LC_ALL`" = C || sudo launchctl setenv LC_ALL C
  333. if ! (launchctl list | grep com.apple.locate) >/dev/null
  334. then
  335. sudo launchctl load -w /System/Library/LaunchDaemons/com.apple.locate.plist
  336. fi
  337. }
  338. setup_darwin(){
  339. __darwin_set_defaults
  340. __darwin_start_daemon
  341. }
  342. ##########################
  343. # setup windirs
  344. setup_windirs(){
  345. $iswindows || return 0
  346. _msg "Setup some directories for windows environment"
  347. if $iscygwin
  348. then
  349. #__winhome="/cygdrive/c/Users/`whoami`"
  350. __winhome=`cygpath -H`/`whoami`
  351. fi
  352. if test -n "$__winhome" -a -d "$__winhome" -a '!' -e "$HOME/.winhome"
  353. then
  354. _msg Make symlink to "$__winhome" with name "$HOME/.winhome"
  355. ln -s "$__winhome" "$HOME/.winhome"
  356. fi
  357. }
  358. #########################
  359. # setup dirs
  360. setup_dirs(){
  361. _msg Make some direcoties
  362. mkdir -vp "$__homelocal"
  363. mkdir -vp "$__homelocal/bin"
  364. mkdir -vp "$__homevar"
  365. }
  366. ####################################
  367. # setup env
  368. # setup new environment with default options
  369. setup_env(){
  370. setup_shrc_common
  371. setup_dirs
  372. setup_gitconf
  373. setup_tmux
  374. setup_scripts
  375. setup_dotfiles --git
  376. }
  377. #########################
  378. # main
  379. main(){
  380. detect_systems
  381. if test -z "$1"
  382. then
  383. echo "Usage: ./setup.sh <cmd> ..."
  384. echo "Available cmds are: $__setups"
  385. exit 1
  386. fi
  387. _cmd=$1
  388. shift
  389. _msg Running setup_$_cmd
  390. setup_$_cmd "$@"
  391. _msg Running setup_$_cmd done
  392. }
  393. main "$@"