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:
34
roles/persona-gamer-retro/README.md
Normal file
34
roles/persona-gamer-retro/README.md
Normal file
@@ -0,0 +1,34 @@
|
||||
# RetroArch 🎮
|
||||
|
||||
## Description
|
||||
|
||||
This Ansible role installs and configures [RetroArch](https://www.retroarch.com/) on Arch Linux systems. It provides all necessary packages, assets, and dependencies for a clean retro gaming experience.
|
||||
|
||||
## Overview
|
||||
|
||||
Designed for retro gaming enthusiasts, this role sets up RetroArch along with its core assets and themes. It ensures all UI styles ([XMB](https://en.wikipedia.org/wiki/XrossMediaBar), [Ozone](https://docs.libretro.com/guides/ozone-menu/)) are ready and provides a consistent emulator frontend interface powered by the [Libretro](https://www.libretro.com/) framework.
|
||||
|
||||
## Purpose
|
||||
|
||||
The purpose of this role is to automate the deployment of a full-featured RetroArch environment, reducing manual setup and improving reproducibility across gaming setups.
|
||||
|
||||
## Features
|
||||
|
||||
- **Installs RetroArch:** Including the main [RetroArch package](https://archlinux.org/packages/community/x86_64/retroarch/) and theme assets.
|
||||
- **UI Assets Support:** Both [XMB](https://docs.libretro.com/guides/xmb-menu/) and [Ozone](https://docs.libretro.com/guides/ozone-menu/) menu styles supported out of the box.
|
||||
|
||||
## ℹ️ Further Reading
|
||||
|
||||
- 🕹️ [RetroArch - Official Site](https://www.retroarch.com/)
|
||||
- 🧩 [Libretro - Modular Emulator Framework](https://www.libretro.com/)
|
||||
- 📚 [RetroArch on ArchWiki](https://wiki.archlinux.org/title/RetroArch)
|
||||
- 🧠 [RetroArch - Wikipedia](https://en.wikipedia.org/wiki/RetroArch)
|
||||
- 🎨 [UI Menus: XMB, Ozone, GLUI, RGUI](https://docs.libretro.com/guides/)
|
||||
|
||||
## 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)
|
25
roles/persona-gamer-retro/meta/main.yml
Normal file
25
roles/persona-gamer-retro/meta/main.yml
Normal file
@@ -0,0 +1,25 @@
|
||||
---
|
||||
galaxy_info:
|
||||
author: "Kevin Veen-Birkenbach"
|
||||
description: "Installs and configures RetroArch."
|
||||
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:
|
||||
- retroarch
|
||||
- emulator
|
||||
- gaming
|
||||
- archlinux
|
||||
- assets
|
||||
repository: https://s.veen.world/cymais
|
||||
issue_tracker_url: https://s.veen.world/cymaisissues
|
||||
documentation: https://s.veen.world/cymais
|
||||
dependencies: []
|
5
roles/persona-gamer-retro/tasks/main.yml
Normal file
5
roles/persona-gamer-retro/tasks/main.yml
Normal file
@@ -0,0 +1,5 @@
|
||||
- name: Install RetroArch and assets
|
||||
pacman:
|
||||
name: "{{ retroarch_packages }}"
|
||||
state: present
|
||||
update_cache: yes
|
4
roles/persona-gamer-retro/vars/main.yml
Normal file
4
roles/persona-gamer-retro/vars/main.yml
Normal file
@@ -0,0 +1,4 @@
|
||||
retroarch_packages:
|
||||
- retroarch
|
||||
- retroarch-assets-xmb
|
||||
- retroarch-assets-ozone
|
Reference in New Issue
Block a user