Clone shirenn's configuration

This commit is contained in:
2021-01-29 01:08:39 +01:00
parent 527e776d62
commit 7af58a6dc7
70 changed files with 1743 additions and 4216 deletions

View File

@ -0,0 +1,20 @@
---
- name: Queries package manager for terminal installation
package:
name:
- xfce4-terminal
register: pkg_result
retries: 3
until: pkg_result is succeeded
become: yes
- name: Create xfce4 terminal config directory
file:
path: '.config/xfce4/terminal/'
state: directory
- name: Copy xfce4-terminal configuration file
template:
src: 'terminalrc.j2'
dest: '.config/xfce4/terminal/terminalrc'