mirror of
https://gitlab.com/sagidayan/linux-config.git
synced 2024-11-01 05:25:24 +00:00
26 lines
545 B
YAML
26 lines
545 B
YAML
|
- name: Install Alacritty PPA (Debian Based)
|
||
|
become: true
|
||
|
apt_repository:
|
||
|
repo: "ppa:aslatter/ppa"
|
||
|
validate_certs: no
|
||
|
state: present
|
||
|
when: ansible_facts['os_family'] == "Debian"
|
||
|
|
||
|
- name: Install Alacritty
|
||
|
become: true
|
||
|
package:
|
||
|
name: alacritty
|
||
|
state: latest
|
||
|
|
||
|
- name: Setting up alacritty config file
|
||
|
copy:
|
||
|
src: dotfiles/alacritty.yml
|
||
|
dest: ~/.alacritty.yml
|
||
|
|
||
|
- name: "Setting Alacritty theme"
|
||
|
ansible.builtin.lineinfile:
|
||
|
path: "~/.alacritty.yml"
|
||
|
regexp: "^colors:"
|
||
|
line: "colors: *{{theme}}"
|
||
|
|