2022-05-27 06:26:56 +00:00
|
|
|
# Interestingly, it is apparently available as a Flatpak. Surprisingly, it
|
|
|
|
# works as if you installed the native package on most repos.
|
2022-03-17 09:38:44 +00:00
|
|
|
---
|
2022-05-27 06:26:56 +00:00
|
|
|
- name: Install fcitx5 nightly Flatpak repo
|
|
|
|
flatpak_remote:
|
2022-03-17 09:38:44 +00:00
|
|
|
state: present
|
2022-05-27 06:26:56 +00:00
|
|
|
name: fcitx5-unstable
|
|
|
|
flatpakrepo_url: https://flatpak.fcitx-im.org/unstable-repo/fcitx5-unstable.flatpakrepo
|
2022-03-17 09:38:44 +00:00
|
|
|
|
2022-05-27 06:26:56 +00:00
|
|
|
- name: Install i18n tools
|
|
|
|
flatpak:
|
2022-03-17 09:38:44 +00:00
|
|
|
state: present
|
2022-05-27 06:26:56 +00:00
|
|
|
name: "{{ item }}"
|
|
|
|
remote: fcitx5-unstable
|
|
|
|
loop:
|
|
|
|
- org.fcitx.Fcitx5
|
|
|
|
- org.fcitx.Fcitx5.Addon.Zhuyin
|
|
|
|
- org.fcitx.Fcitx5.Addon.Unikey
|
|
|
|
- org.fcitx.Fcitx5.Addon.Rime
|
|
|
|
- org.fcitx.Fcitx5.Addon.Mozc
|
|
|
|
- org.fcitx.Fcitx5.Addon.ChineseAddons
|
|
|
|
- org.fcitx.Fcitx5.Addon.Lua
|
2022-03-17 09:38:44 +00:00
|
|
|
|
2022-05-27 06:26:56 +00:00
|
|
|
- name: Enable fcitx5 to autostart
|
|
|
|
copy:
|
|
|
|
src: "{{ role_path }}/files/org.fcitx.Fcitx5.desktop"
|
|
|
|
dest: "/etc/xdg/autostart/org.fcitx.Fcitx5.desktop"
|
|
|
|
setype: etc_t
|