mirror of
https://github.com/DO1JLR/ansible_linux_desktop_setup.git
synced 2024-09-14 19:54:51 +02:00
Add steam
This commit is contained in:
parent
467bf00084
commit
e05fc69ba6
4 changed files with 23 additions and 7 deletions
|
@ -17,6 +17,8 @@ i3_packages_extra:
|
||||||
- gnome
|
- gnome
|
||||||
- asciinema
|
- asciinema
|
||||||
- mtr
|
- mtr
|
||||||
|
- evince
|
||||||
|
- libreoffice
|
||||||
|
|
||||||
i3_keybindings_extra:
|
i3_keybindings_extra:
|
||||||
- keybinding:
|
- keybinding:
|
||||||
|
|
5
roles/steam/defaults/main.yml
Normal file
5
roles/steam/defaults/main.yml
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
|
||||||
|
steam_default_packages:
|
||||||
|
- steam
|
||||||
|
- steam-native-runtime
|
||||||
|
|
9
roles/steam/tasks/main.yml
Normal file
9
roles/steam/tasks/main.yml
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
---
|
||||||
|
|
||||||
|
- name: Install steam on arch
|
||||||
|
pacman:
|
||||||
|
name: "{{ steam_default_packages }}"
|
||||||
|
state: latest
|
||||||
|
update_cache: yes
|
||||||
|
become: yes
|
||||||
|
|
14
setup.yml
14
setup.yml
|
@ -36,13 +36,13 @@
|
||||||
- pulseaudio
|
- pulseaudio
|
||||||
- networkmanager
|
- networkmanager
|
||||||
|
|
||||||
- name: improve firefox configuration
|
#- name: improve firefox configuration
|
||||||
hosts: thinkpad
|
# hosts: thinkpad
|
||||||
tags:
|
# tags:
|
||||||
- setup
|
# - setup
|
||||||
- firefox
|
# - firefox
|
||||||
roles:
|
# roles:
|
||||||
- firefox
|
# - firefox
|
||||||
|
|
||||||
|
|
||||||
- name: Install useful packages
|
- name: Install useful packages
|
||||||
|
|
Loading…
Reference in a new issue