Compare commits

...

4 Commits

7 changed files with 48 additions and 12 deletions

View File

@ -17,7 +17,7 @@
- backup
- ego
- firefox
- lutris
- gaming
# - flutter
# - virtual

View File

@ -1,8 +1,8 @@
---
#- import_tasks: ubuntu.yml
# when: ansible_distribution == "Ubuntu"
#
#- import_tasks: arch.yml
# when: ansible_distribution == "Archlinux"
- import_tasks: ubuntu.yml
when: ansible_distribution == "Ubuntu"
- import_tasks: timekpr.yml
- import_tasks: arch.yml
when: ansible_distribution == "Archlinux"
#
#- import_tasks: timekpr.yml

View File

@ -0,0 +1,17 @@
- name: install lutris
become: yes
community.general.pacman:
name:
- lutris
- name: install steam
become: yes
community.general.pacman:
name:
- steam
- name: install ttf-liberation fonts for replacement for Arial font
become: yes
community.general.pacman:
name:
- ttf-liberation

View File

@ -1,5 +0,0 @@
- name: install lutris
become: yes
community.general.pacman:
name:
- lutris

View File

@ -39,3 +39,27 @@
- name: update yay cache
shell:
cmd: yay -Y --gendb
- name: "add multilib"
become: yes
lineinfile:
dest: "/etc/pacman.conf"
state: "present"
line: "[multilib]"
regexp: "^\\[multilib\\]"
insertafter: "^#\\[multilib\\]"
- name: "add multilib (cont)"
become: yes
lineinfile:
dest: "/etc/pacman.conf"
state: "present"
line: "Include = /etc/pacman.d/mirrorlist"
insertafter: "^\\[multilib\\]"
regexp: "Include = /etc/pacman.d/mirrorlist"
- name: Update cache
become: yes
community.general.pacman:
update_cache: true