mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-08-29 15:06:26 +02:00
Optimized persona gamer, gnome, and refactored others
This commit is contained in:
38
roles/persona-gamer-core/README.md
Normal file
38
roles/persona-gamer-core/README.md
Normal file
@@ -0,0 +1,38 @@
|
||||
# Gamer Core 🧩
|
||||
|
||||
## Description
|
||||
|
||||
This Ansible role installs core gaming utilities and performance tools on Arch Linux systems. It includes essential software like [Steam](https://store.steampowered.com/), [Lutris](https://lutris.net/), [Wine](https://www.winehq.org/), [GameMode](https://github.com/FeralInteractive/gamemode), and [MangoHUD](https://github.com/flightlessmango/MangoHud).
|
||||
|
||||
## Overview
|
||||
|
||||
Focused on native and Windows-compatible game support, this role equips systems with the necessary runtimes, drivers, and enhancements for high-performance gaming. It complements other persona-gamer roles such as `retro` and `default` to provide a full gaming setup.
|
||||
|
||||
## Purpose
|
||||
|
||||
To automate the installation of foundational gaming tools and system enhancements, ensuring consistent and fast configuration across setups.
|
||||
|
||||
## Features
|
||||
|
||||
- **Steam & Lutris:** Popular game launchers for Linux and Windows titles.
|
||||
- **Wine Runtime:** Provides compatibility for Windows-based games.
|
||||
- **GameMode & MangoHUD:** Performance tuning and live system metrics.
|
||||
- **Multilib & 32-bit Support:** Required for compatibility layers.
|
||||
|
||||
## Included Tools
|
||||
|
||||
| Tool | Description |
|
||||
|-------------|-------------|
|
||||
| [Steam](https://store.steampowered.com/) | Native Linux and Proton-powered game launcher |
|
||||
| [Lutris](https://lutris.net/) | Unified gaming platform for native and emulated games |
|
||||
| [Wine](https://www.winehq.org/) | Compatibility layer for Windows games |
|
||||
| [GameMode](https://github.com/FeralInteractive/gamemode) | Performance daemon by Feral Interactive |
|
||||
| [MangoHUD](https://github.com/flightlessmango/MangoHud) | Vulkan/OpenGL performance overlay |
|
||||
|
||||
## Credits 📝
|
||||
|
||||
Developed and maintained by **Kevin Veen-Birkenbach**
|
||||
Learn more at [www.veen.world](https://www.veen.world)
|
||||
|
||||
Part of the [CyMaIS Project](https://github.com/kevinveenbirkenbach/cymais)
|
||||
License: [CyMaIS NonCommercial License (CNCL)](https://s.veen.world/cncl)
|
28
roles/persona-gamer-core/meta/main.yml
Normal file
28
roles/persona-gamer-core/meta/main.yml
Normal file
@@ -0,0 +1,28 @@
|
||||
---
|
||||
galaxy_info:
|
||||
author: "Kevin Veen-Birkenbach"
|
||||
description: "Installs essential gaming utilities, launchers, and runtimes on Arch Linux."
|
||||
license: "CyMaIS NonCommercial License (CNCL)"
|
||||
license_url: "https://s.veen.world/cncl"
|
||||
company: |
|
||||
Kevin Veen-Birkenbach
|
||||
Consulting & Coaching Solutions
|
||||
https://www.veen.world
|
||||
min_ansible_version: "2.9"
|
||||
platforms:
|
||||
- name: Archlinux
|
||||
versions:
|
||||
- rolling
|
||||
galaxy_tags:
|
||||
- gaming
|
||||
- steam
|
||||
- lutris
|
||||
- wine
|
||||
- gamemode
|
||||
- mangohud
|
||||
- archlinux
|
||||
- performance
|
||||
repository: https://s.veen.world/cymais
|
||||
issue_tracker_url: https://s.veen.world/cymaisissues
|
||||
documentation: https://s.veen.world/cymais
|
||||
dependencies: []
|
15
roles/persona-gamer-core/tasks/main.yml
Normal file
15
roles/persona-gamer-core/tasks/main.yml
Normal file
@@ -0,0 +1,15 @@
|
||||
- name: Install core gaming tools from pacman
|
||||
pacman:
|
||||
name:
|
||||
- steam
|
||||
- lutris
|
||||
- gamemode
|
||||
- mangohud
|
||||
- lib32-mangohud
|
||||
- wine
|
||||
- wine-gecko
|
||||
- wine-mono
|
||||
- winetricks
|
||||
- lib32-wine
|
||||
state: present
|
||||
update_cache: yes
|
Reference in New Issue
Block a user