mirror of
				https://github.com/kevinveenbirkenbach/computer-playbook.git
				synced 2025-11-04 04:08:15 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			280 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			280 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
- name: Install core gaming tools from pacman
 | 
						|
  community.general.pacman:
 | 
						|
    name:
 | 
						|
      - steam
 | 
						|
      - lutris
 | 
						|
      - gamemode
 | 
						|
      - mangohud
 | 
						|
      - lib32-mangohud
 | 
						|
      - wine
 | 
						|
      - wine-gecko
 | 
						|
      - wine-mono
 | 
						|
      - winetricks
 | 
						|
    state: present
 | 
						|
    update_cache: yes
 |