mirror of
https://github.com/correl/dotfiles.git
synced 2024-11-25 03:00:05 +00:00
17 lines
256 B
Text
17 lines
256 B
Text
|
#!/bin/bash
|
||
|
# Description: Japanese Language Support
|
||
|
set -e
|
||
|
|
||
|
case $_PLATFORM in
|
||
|
darwin)
|
||
|
_recipe brew
|
||
|
_brew kakasi
|
||
|
_brew cmigemo
|
||
|
;;
|
||
|
linux)
|
||
|
_recipe _apt
|
||
|
_apt kakasi
|
||
|
_apt cmigemo
|
||
|
;;
|
||
|
esac
|