arch-install/roles/08_tweaks/tasks/main.yml
Ariejan de Vroom e141f2b6ff
Some checks failed
Lint / Lint (3.10) (push) Failing after 15s
Lint / Lint (3.11) (push) Failing after 15s
Setup local zsh env
2024-08-21 11:47:03 +02:00

49 lines
1.3 KiB
YAML

---
- name: Enabling systemd services
ansible.builtin.systemd:
name: "{{ item }}"
enabled: yes
state: started
with_items: "{{ systemd_services }}"
become: true
- name: Detecting lm_sensors
ansible.builtin.shell: sensors-detect --auto
ignore_errors: true
changed_when: true
become: true
- name: Install WhiteSur GTK user-theme
ansible.builtin.shell: |
git clone https://github.com/vinceliuice/WhiteSur-gtk-theme.git --depth=1
cd WhiteSur-gtk-theme
./install.sh -l -c Light -t blue --silent-mode -HD
./tweaks.sh -F -d --silent-mode
cd ..
rm -rf WhiteSur-gtk-theme
ignore_errors: true
changed_when: true
become: true
- name: Configure GNOME Settings
ansible.builtin.import_tasks: gsettings.yml
- name: Install GNOME Extensions
ansible.builtin.import_tasks: gnome-extensions.yml
- name: Setup a wallpaper
ansible.builtin.import_tasks: wallpaper.yml
- name: Configure local zsh
ansible.builtin.import_tasks: zsh-env-local.yml
- name: Configure gpg-agent pinentry
ansible.builtin.lineinfile:
path: ~/.gnupg/gpg-agent.conf
line: "pinentry-program /usr/bin/pinentry-gnome3"
create: yes
- name: Set GNOME default browser to firefox
ansible.builtin.shell: xdg-settings set default-web-browser firefox.desktop