Feat: add steam to gaming
This commit is contained in:
parent
0abbba6bff
commit
4a0f1318fe
@ -1,6 +1,34 @@
|
||||
---
|
||||
- name: Install Lutris
|
||||
- name: "add multilib"
|
||||
lineinfile:
|
||||
dest: "/etc/pacman.conf"
|
||||
state: "present"
|
||||
line: "[multilib]"
|
||||
regexp: "^\\[multilib\\]"
|
||||
insertafter: "^#\\[multilib\\]"
|
||||
|
||||
- name: "add multilib (cont)"
|
||||
lineinfile:
|
||||
dest: "/etc/pacman.conf"
|
||||
state: "present"
|
||||
line: "Include = /etc/pacman.d/mirrorlist"
|
||||
insertafter: "^\\[multilib\\]"
|
||||
regexp: "Include = /etc/pacman.d/mirrorlist"
|
||||
|
||||
- name: Update pacman cache
|
||||
pacman:
|
||||
update_cache: yes
|
||||
|
||||
- name: Ensure a locale exists
|
||||
locale_gen:
|
||||
name: en_US.UTF-8
|
||||
state: present
|
||||
|
||||
- name: Install Lutris, steam and fonts
|
||||
pacman:
|
||||
name:
|
||||
- lutris
|
||||
- steam
|
||||
- ttf-liberation
|
||||
state: present
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user