config.rb 394 B

123456789101112131415
  1. module RimeDeploy
  2. module Config
  3. RIME_CONFIG_REPO = "https://github.com/iDvel/rime-ice.git"
  4. class MacOS
  5. InstallCmd = "brew install --cask squirrel"
  6. ConfigPath = "~/Library/Rime"
  7. end
  8. class LinuxDistro
  9. ConfigPathIbus = "~/.config/ibus/rime"
  10. ConfigPathFcitx = "~/.config/fcitx/rime"
  11. ConfigPathFcitx5 = "~/.local/share/fcitx5/rime"
  12. end
  13. end
  14. end