2021-04-16 13:44:27 -04:00
|
|
|
---
|
2021-05-10 15:42:27 -04:00
|
|
|
- name: create outrun dark gnome-terminal profile
|
2021-04-16 13:44:27 -04:00
|
|
|
script: base16-outrun-dark-256.sh
|
|
|
|
args:
|
2021-05-10 15:42:27 -04:00
|
|
|
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"
|
2021-04-16 13:44:27 -04:00
|
|
|
|
|
|
|
- name: Add Tela icon theme
|
2021-04-16 15:46:23 -04:00
|
|
|
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
|
2021-04-16 13:44:27 -04:00
|
|
|
args:
|
|
|
|
warn: False
|
|
|
|
chdir: "{{ ansible_env.HOME }}/.local"
|
|
|
|
creates: "{{ ansible_env.HOME }}/.local/share/icons/Tela-dark"
|
|
|
|
|
|
|
|
- name: Add Layan-dark theme
|
2021-04-16 15:46:23 -04:00
|
|
|
shell: mkdir -p .themes && cd .themes && curl -Lo layan.tar.xz {{ layan_dark_url }} && tar xvJf layan.tar.xz && rm -f layan.tar.xz
|
2021-04-16 13:44:27 -04:00
|
|
|
args:
|
2021-04-16 16:39:36 -04:00
|
|
|
chdir: "{{ ansible_env.HOME }}"
|
2021-04-16 13:44:27 -04:00
|
|
|
warn: False
|
|
|
|
creates: "{{ ansible_env.HOME }}/.themes/Layan-dark"
|