This repository has been archived on 2021-09-08. You can view files and clone it, but cannot push or open issues/pull-requests.
localdev-playbooks/gnome.yml

25 lines
957 B
YAML
Raw Permalink Normal View History

---
2021-05-10 15:42:27 -04:00
- name: create outrun dark gnome-terminal profile
2021-09-08 00:15:42 -04:00
shell: ./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
2021-09-08 00:15:42 -04:00
shell: ./road-grey.sh
2021-05-10 15:42:27 -04:00
args:
creates: "{{ ansible_env.HOME }}/.config/.gnome-terminal-profile-road-grey-created"
- 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
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
args:
2021-04-16 16:39:36 -04:00
chdir: "{{ ansible_env.HOME }}"
warn: False
creates: "{{ ansible_env.HOME }}/.themes/Layan-dark"