This commit is contained in:
2023-07-16 09:02:18 -05:00
parent cfd00f22b4
commit bd26500c9b
8 changed files with 69 additions and 17 deletions

10
scripts/install_tpm.yml Normal file
View File

@@ -0,0 +1,10 @@
- name: check if tpm is installed
become_user: user
stat:
path: ~/.tmux/plugins/tpm
register: tpm
- name: Download TPM
become_user: user
shell: git clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm
when: tpm.stat.exists == false