Skip to content
Snippets Groups Projects
Commit 81e08fcc authored by Robin Sonnabend's avatar Robin Sonnabend
Browse files

Install terminfo files for kitty and urxvt

parent 57160872
Branches
No related tags found
No related merge requests found
File added
File added
...@@ -125,3 +125,35 @@ ...@@ -125,3 +125,35 @@
- config - config
- shell - shell
- modules - modules
- name: ensure directories for terminfo config files exist
file:
path: "/etc/terminfo/{{item.path}}"
owner: root
group: root
state: directory
mode: 0755
with_filetree: terminfo/
when: item.state == "directory"
loop_control:
label: "{{item.path}}"
tags:
- config
- shell
- terminfo
- name: ensure strange terminals work well over ssh
copy:
src: "{{item.src}}"
dest: "/etc/terminfo/{{item.path}}"
owner: root
group: root
mode: 0644
with_filetree: terminfo/
when: item.state == "file"
loop_control:
label: "{{item.path}}"
tags:
- config
- shell
- terminfo
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment