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