config.rb 271 B

12345678910111213
  1. module RimeDeploy
  2. module OSConfig
  3. module Mac
  4. InstallCmd = "brew install --cask squirrel"
  5. ConfigPath = "~/Library/Rime"
  6. end
  7. module Linux
  8. InstallCmd = "sudo apt install ibus-rime"
  9. ConfigPath = "~/.config/ibus/rime/"
  10. end
  11. end
  12. end