config.rb 336 B

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