Taggati kitty e alacritty.

This commit is contained in:
Emiliano Vavassori 2024-10-01 00:57:45 +02:00
parent 9017f97a6d
commit a0694e4182
2 changed files with 20 additions and 2 deletions

View file

@ -5,13 +5,22 @@
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