config.rb 332 B

1234567891011121314
  1. module RimeDeploy
  2. RIME_CONFIG_REPO = "https://github.com/iDvel/rime-ice.git"
  3. module OSConfig
  4. module Mac
  5. InstallCmd = "brew install --cask squirrel"
  6. ConfigPath = "~/Library/Rime"
  7. end
  8. module Linux
  9. InstallCmd = "sudo apt install ibus-rime"
  10. ConfigPath = "~/.config/ibus/rime/"
  11. end
  12. end
  13. end