| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- module RimeDeploy
- class LinuxDistroJobGroup < JobGroup
- ConfigPathIbus = "~/.config/ibus/rime"
- ConfigPathFcitx = "~/.config/fcitx/rime"
- ConfigPathFcitx5 = "~/.local/share/fcitx5/rime"
- class CheckInstallRimeJob < Job
- def call
- puts "==== Rime auto deploy ====".green
- puts "Before Check Rime Installed Staus".yellow
- tips = <<-TIP
- Different Linux has it's own package manager. So make sure you had installed Rime before.
- For Fcitx5, install fcitx5-rime.
- For Fcitx, install fcitx-rime.
- For IBus, install ibus-rime.
- more:
- https://wiki.archlinux.org/title/Rime
- TIP
- puts tips
- puts ""
- puts "Then choose what your had installed."
- ChooseSession.new(
- [
- [
- "ibus-rime",
- -> { Store.config_path = LinuxDistroJobGroup::ConfigPathIbus }
- ],
- [
- "fcitx-rime",
- -> { Store.config_path = LinuxDistroJobGroup::ConfigPathFcitx }
- ],
- [
- "fcitx5-rime",
- -> { Store.config_path = LinuxDistroJobGroup::ConfigPathFcitx5 }
- ],
- [
- "I'll quit first.After installed Rime by myself then run this program again.",
- -> { exit 0 }
- ]
- ]
- ).call
- sleep 1
- return :next
- end
- end
- class BackupRimeConfigJob < Job
- def call
- puts intro
- system(
- "mv #{Store.config_path} #{Store.config_path}.#{Time.now.to_i}.old"
- )
- sleep 1
- return :next
- end
- end
- class CloneConfigJob < Job
- def call
- puts intro
- system(
- "git clone #{Config::RIME_CONFIG_REPO} #{Store.config_path}"
- )
- sleep 1
- return :next
- end
- end
- class CopyCustomConfigJob < Job
- def call
- puts intro
- system("cp ./custom/*.yaml #{Store.config_path}/")
- sleep 1
- system("cp ./custom/custom_phrase.txt #{Store.config_path}/")
- sleep 1
- return :next
- end
- end
- class FinishedJob < Job
- def call
- puts ""
- puts "Tips: When finished all jobs. You need to do follow:".yellow
- puts "1) Restart system."
- puts "2) open Rime input method setting pane and click " +
- "DEPLOY".yellow + " button."
- puts "Enjoy~ 🍻"
- puts "more info:".yellow
- puts "Config path: #{Store.config_path}/"
- return :next
- end
- end
- self.before_jobs = [CheckInstallRimeJob]
- self.jobs = [BackupRimeConfigJob, CloneConfigJob, CopyCustomConfigJob]
- self.after_jobs = [FinishedJob]
- self.upgrade_jobs = [
- Upgrade::UpgradeRimeAutoDeployJob,
- Upgrade::UpgradeRimeConfigJob
- ]
- end
- end
|