mirror of
https://gitlab.com/sagidayan/linux-config.git
synced 2024-11-14 11:45:25 +00:00
Sagi Dayan
1219325293
Removed all debian/ubuntu CI and tasks. Focusing on fedora. Moved some gh_releases tasks to dnf since they are all in the fedora repos. Signed-off-by: Sagi Dayan <sagidayan@gmail.com>
20 lines
414 B
YAML
20 lines
414 B
YAML
- name: Install Alacritty
|
|
become: true
|
|
package:
|
|
name: alacritty
|
|
state: present
|
|
|
|
- name: Setting up alacritty config file
|
|
copy:
|
|
src: dotfiles/alacritty.yml
|
|
dest: ~/.alacritty.yml
|
|
mode: preserve
|
|
changed_when: false
|
|
|
|
- name: "Setting Alacritty theme"
|
|
ansible.builtin.lineinfile:
|
|
path: "~/.alacritty.yml"
|
|
regexp: "^colors:"
|
|
line: "colors: *{{ theme }}"
|
|
changed_when: false
|
|
|