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