Aggiunto supporto per nix, alacritty e kitty.
This commit is contained in:
parent
813cf57d54
commit
9017f97a6d
11 changed files with 218 additions and 0 deletions
17
roles/kitty/tasks/main.yml
Normal file
17
roles/kitty/tasks/main.yml
Normal file
|
@ -0,0 +1,17 @@
|
|||
---
|
||||
# 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
|
Loading…
Add table
Add a link
Reference in a new issue