dotfiles-ansible/playbooks/roles/packages/tasks/tt.yml

18 lines
328 B
YAML

---
- name: tt | Clone tt repository
git:
depth: 1
repo: https://github.com/runrin/tt.git
dest: '{{ tt_dir }}'
- name: tt | Build tt
community.general.make:
chdir: '{{ tt_dir }}'
- name: tt | Install custom launcher for tt
template:
src: tt.j2
dest: ~/.local/bin/tt
mode: 0755
force: yes