18 lines
423 B
YAML
18 lines
423 B
YAML
|
---
|
||
|
# installing compatibility with kitty
|
||
|
|
||
|
- name: Copying terminfo settings
|
||
|
ansible.builtin.copy:
|
||
|
src: alacritty.terminfo
|
||
|
dest: /tmp/alacritty.terminfo
|
||
|
|
||
|
- name: Setting up terminfo for kitty
|
||
|
ansible.builtin.shell: >-
|
||
|
tic -xe alacritty,alacritty-direct /tmp/alacritty.terminfo
|
||
|
become: true
|
||
|
|
||
|
- name: Removing now useless terminfo
|
||
|
ansible.builtin.file:
|
||
|
path: /tmp/alacritty.terminfo
|
||
|
state: absent
|