25 lines
955 B
YAML
25 lines
955 B
YAML
---
|
|
- name: create outrun dark gnome-terminal profile
|
|
script: base16-outrun-dark-256.sh
|
|
args:
|
|
creates: "{{ ansible_env.HOME }}/.config/.gnome-terminal-profile-base16-outrun-dark-256-created"
|
|
|
|
- name: create road grey light gnome-terminal profile
|
|
script: road-grey.sh
|
|
args:
|
|
creates: "{{ ansible_env.HOME }}/.config/.gnome-terminal-profile-road-grey-created"
|
|
|
|
- name: Add Tela icon theme
|
|
shell: mkdir -p share/icons && cd share/icons && curl -Lo tela.tar.xz {{ tela_icons_url }} && tar xvJf tela.tar.xz && rm -rf tela.tar.xz
|
|
args:
|
|
warn: False
|
|
chdir: "{{ ansible_env.HOME }}/.local"
|
|
creates: "{{ ansible_env.HOME }}/.local/share/icons/Tela-dark"
|
|
|
|
- name: Add Layan-dark theme
|
|
shell: mkdir -p .themes && cd .themes && curl -Lo layan.tar.xz {{ layan_dark_url }} && tar xvJf layan.tar.xz && rm -f layan.tar.xz
|
|
args:
|
|
chdir: "{{ ansible_env.HOME }}"
|
|
warn: False
|
|
creates: "{{ ansible_env.HOME }}/.themes/Layan-dark"
|