diff --git a/gnome-terminal.yml b/gnome-terminal.yml deleted file mode 100644 index a0d9248..0000000 --- a/gnome-terminal.yml +++ /dev/null @@ -1,12 +0,0 @@ ---- -- name: create linux gnome-terminal profile - when: ansible_facts['system']|lower == 'linux' - script: base16-outrun-dark-256.sh - args: - creates: "{{ ansible_env.HOME }}/.config/.gnome-terminal-profile-created" - -- name: create freebsd gnome-terminal profile - when: ansible_facts['system']|lower == 'freebsd' - script: base16-outrun-dark-256.sh - args: - creates: "{{ ansible_env.HOME }}/.config/.gnome-terminal-profile-created" diff --git a/gnome.yml b/gnome.yml new file mode 100644 index 0000000..f57a3e4 --- /dev/null +++ b/gnome.yml @@ -0,0 +1,18 @@ +--- +- name: create gnome-terminal profile + script: base16-outrun-dark-256.sh + args: + creates: "{{ ansible_env.HOME }}/.config/.gnome-terminal-profile-created" + +- name: Add Tela icon theme + shell: mkdir -p share/icons && cd share/icons && curl -Lo tela.tar.xz https://www.pling.com/p/1279924/startdownload?file_id=1618331024&file_name=01-Tela.tar.xz&file_type=application/x-xz&file_size=2715388 && 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 https://www.gnome-look.org/p/1309214/startdownload?file_id=1610441303&file_name=Layan-dark.tar.xz&file_type=application/x-xz&file_size=100476 && tar xvJf layan.tar.xz && rm -f layan.tar.xz + args: + warn: False + creates: "{{ ansible_env.HOME }}/.themes/Layan-dark" diff --git a/localdev.yml b/localdev.yml index add1074..e65affe 100644 --- a/localdev.yml +++ b/localdev.yml @@ -22,5 +22,5 @@ - name: Install rust via rustup import_tasks: rust.yml - - name: Configure gnome-terminal profile - import_tasks: gnome-terminal.yml + - name: Configure gnome settings + import_tasks: gnome.yml