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.
 
 
 
 
 
 

492 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. $_gc push.default current
  171. command -v xz >/dev/null && \
  172. $_gc tar.txz.command "xz -c"
  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)\" --date=short -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.ffme "merge --ff-only --stat --verbose"
  183. $_gc alias.gr "grep -n"
  184. $_gc alias.ls "ls-files"
  185. # $_gc alias.ls "ls-files -v --full-name"
  186. # $_gc alias.ls "status -u -s ."
  187. $_gc alias.sl "!sl"
  188. # $_gc alias.my-ls "ls-files | xargs ls"
  189. # $_gc alias.ll "!git ls-files | xargs ls -l -CFG --color=auto --time-style=long-iso"
  190. $_gc alias.addi "add -i"
  191. $_gc alias.clean-p "!test -z \"\$(git status -s -uno)\""
  192. # alias open-branch and close-branch, which will be useful for topic branch
  193. # workflow
  194. _git_open_branch="checkout -b"
  195. _git_close_branch="!sh -cx 'git stash && \
  196. git checkout master && git merge --no-ff --stat --verbose -'"
  197. $_gc alias.open-branch "$_git_open_branch"
  198. $_gc alias.close-branch "$_git_close_branch"
  199. $_gc alias.o "$_git_open_branch"
  200. $_gc alias.c "$_git_close_branch"
  201. $_gc alias.todo "grep -nH -E -i 'todo:|note:|fixme:'"
  202. #$_gc alias.wc "!git ls-files -z | xargs -0 wc"
  203. # $_gc push.default "simple"
  204. if $iswindows; then
  205. $_gc core.fileMode false
  206. fi
  207. }
  208. #############################
  209. # setup tmux
  210. setup_tmux(){
  211. tmux_conf_local="$HOME/.tmux.conf.local"
  212. _msg "Generate $tmux_conf_local"
  213. case "`hostname`" in
  214. arch-aspireone)
  215. tmux_bg_color=yellow
  216. tmux_fg_color=black
  217. ;;
  218. arch-mba)
  219. tmux_bg_color=cyan
  220. tmux_fg_color=black
  221. ;;
  222. newkiwi)
  223. tmux_bg_color=magenta
  224. tmux_fg_color=white
  225. ;;
  226. debian-vb-win7-opti)
  227. tmux_bg_color=red
  228. tmux_fg_color=white
  229. ;;
  230. *)
  231. tmux_bg_color=green
  232. tmux_fg_color=black
  233. ;;
  234. esac
  235. cat <<__EOC__ >"$tmux_conf_local"
  236. # $tmux_conf_local
  237. # Automatically generated by $0 at $_current_date
  238. set -g status-right "${USER}@$(hostname) | #(tmux -V) "
  239. set -g status-bg $tmux_bg_color
  240. set -g status-fg $tmux_fg_color
  241. set -g mode-bg $tmux_bg_color
  242. set -g mode-fg $tmux_fg_color
  243. set -g pane-active-border-fg $tmux_bg_color
  244. __EOC__
  245. _tmux_conf="$HOME"/.tmux.conf
  246. _msg "Prepare $_tmux_conf"
  247. if test -f "$_tmux_conf"
  248. then
  249. _warn "Tmux config file found. Skipping"
  250. else
  251. echo "source \"$DOTFILES_DIR/tmux.conf\"" >>"$_tmux_conf"
  252. fi
  253. setup_dotfiles tmux.conf
  254. }
  255. ###############################
  256. # setup emacs
  257. setup_emacs(){
  258. _msg "Setup emacs init.el"
  259. _emacs_dir="$HOME"/.emacs.d
  260. mkdir -vp "$_emacs_dir"
  261. _emacs_init_el="$_emacs_dir"/init.el
  262. if test -f "$_emacs_init_el"
  263. then
  264. _warn "Emacs init.el found. Skipping"
  265. else
  266. cat <<__EOC__ >>"$_emacs_init_el"
  267. (and (file-readable-p "$DOTFILES_DIR/emacs.el")
  268. (load-file "$DOTFILES_DIR/emacs.el"))
  269. __EOC__
  270. fi
  271. setup_dotfiles emacs.el
  272. }
  273. ##################################
  274. # setup vim
  275. setup_vim(){
  276. _msg "Setup vimrc"
  277. _vimrc="$HOME"/.vimrc
  278. if test -f "$_vimrc"
  279. then
  280. _warn "Vim rcfile found. Skipping"
  281. else
  282. cat <<__EOC__ >>"$_vimrc"
  283. if filereadable(expand('$DOTFILES_DIR/vimrc'))
  284. source $DOTFILES_DIR/vimrc
  285. endif
  286. __EOC__
  287. fi
  288. setup_dotfiles vimrc
  289. }
  290. ##############################
  291. # setup scripts
  292. _fetch_script(){
  293. # _fetch_script <url> <binname>
  294. url="$1"
  295. name="$2"
  296. dst="$HOME/.local/bin/$name"
  297. test -f "$dst" && return 0
  298. command -v "$name" >/dev/null && return 0
  299. if _download "$url" "$dst"
  300. then
  301. chmod u+x "$dst"
  302. else
  303. test -f "$dst" && rm -- "$dst"
  304. fi
  305. }
  306. setup_scripts(){
  307. _msg "Download some utility scripts"
  308. _fetch_script \
  309. https://gist.github.com/10sr/6852317/raw/colortable16.sh colortable16.sh
  310. _fetch_script \
  311. https://gist.github.com/10sr/6852331/raw/256colors2.pl 256colors2.pl
  312. _fetch_script \
  313. https://github.com/icy/pacapt/raw/ng/pacapt pacapt
  314. _fetch_script \
  315. http://beyondgrep.com/ack-2.12-single-file ack-2.12
  316. }
  317. ################################
  318. # setup darwin
  319. __darwin_set_defaults(){
  320. $isdarwin || return 0
  321. # http://appdrill.net/60641/mac-boot-mute.html
  322. #sudo nvram SystemAudioVolume=%80
  323. # add quit entry in menu
  324. defaults write com.apple.finder QuitMenuItem -bool YES
  325. # show full path on titlebar
  326. defaults write com.apple.finder _FXShowPosixPathInTitle -bool YES
  327. # do not show desktop icons
  328. defaults write com.apple.finder CreateDesktop -boolean false
  329. killall Finder
  330. # disable dashboard
  331. #defaults write com.apple.dashboard mcx-disabled -bool YES
  332. }
  333. __darwin_start_daemon(){
  334. $isdarwin || return 0
  335. test "`launchctl getenv LC_ALL`" = C || sudo launchctl setenv LC_ALL C
  336. if ! (launchctl list | grep com.apple.locate) >/dev/null
  337. then
  338. sudo launchctl load -w /System/Library/LaunchDaemons/com.apple.locate.plist
  339. fi
  340. }
  341. setup_darwin(){
  342. __darwin_set_defaults
  343. __darwin_start_daemon
  344. }
  345. ##########################
  346. # setup windirs
  347. setup_windirs(){
  348. $iswindows || return 0
  349. _msg "Setup some directories for windows environment"
  350. if $iscygwin
  351. then
  352. #__winhome="/cygdrive/c/Users/`whoami`"
  353. __winhome=`cygpath -H`/`whoami`
  354. fi
  355. if test -n "$__winhome" -a -d "$__winhome" -a '!' -e "$HOME/.winhome"
  356. then
  357. _msg Make symlink to "$__winhome" with name "$HOME/.winhome"
  358. ln -s "$__winhome" "$HOME/.winhome"
  359. fi
  360. }
  361. #########################
  362. # setup dirs
  363. setup_dirs(){
  364. _msg Make some direcoties
  365. mkdir -vp "$__homelocal"
  366. mkdir -vp "$__homelocal/bin"
  367. mkdir -vp "$__homevar"
  368. }
  369. ####################################
  370. # setup env
  371. # setup new environment with default options
  372. setup_env(){
  373. setup_shrc_common
  374. setup_dirs
  375. setup_gitconf
  376. setup_tmux
  377. setup_scripts
  378. setup_dotfiles --git
  379. }
  380. #########################
  381. # main
  382. main(){
  383. detect_systems
  384. if test -z "$1"
  385. then
  386. echo "Usage: ./setup.sh <cmd> ..."
  387. echo "Available cmds are: $__setups"
  388. exit 1
  389. fi
  390. _cmd=$1
  391. shift
  392. _msg Running setup_$_cmd
  393. setup_$_cmd "$@"
  394. _msg Running setup_$_cmd done
  395. }
  396. main "$@"