rename gnome file, add nice themes for gnome/gtk

main
Andrew Coleman 2021-04-16 13:44:27 -04:00
parent 46aa5ef390
commit 5642995139
3 changed files with 20 additions and 14 deletions

View File

@ -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"

18
gnome.yml Normal file
View File

@ -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"

View File

@ -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