Optimized persona gamer, gnome, and refactored others

This commit is contained in:
2025-04-02 15:09:56 +02:00
parent 30b138ffa3
commit b98f032141
39 changed files with 373 additions and 100 deletions

View File

@@ -0,0 +1,25 @@
# GNOME Terminal
## Description
This role installs **GNOME Terminal**, the official terminal emulator for the GNOME desktop environment. GNOME Terminal provides a modern, feature-rich command-line interface for users on Arch Linux.
Learn more about GNOME Terminal on [Wikipedia](https://en.wikipedia.org/wiki/GNOME_Terminal) and visit the [GNOME Official Website](https://www.gnome.org) for additional details.
## Purpose
The purpose of this role is to ensure that GNOME Terminal is installed and properly configured on Arch Linux systems, providing users with a robust and fully featured terminal emulator that integrates seamlessly with the GNOME desktop.
## Features
- Installs GNOME Terminal using the Pacman package manager.
- Ensures the terminal emulator is available system-wide.
- Supports modern features and configuration options offered by GNOME Terminal.
- Enhances the overall usability and productivity of the GNOME desktop environment.
## Credits
Developed and maintained by **Kevin Veen-Birkenbach**.
Learn more at [www.veen.world](https://www.veen.world)
License: [CyMaIS NonCommercial License (CNCL)](https://s.veen.world/cncl)

View File

@@ -0,0 +1,20 @@
---
galaxy_info:
author: "Kevin Veen-Birkenbach"
description: "Installs GNOME Terminal on Arch Linux, providing a modern terminal emulator for the GNOME desktop environment."
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:
- gnome
- terminal
- automation
dependencies: []

View File

@@ -0,0 +1,6 @@
- name: Install Gnome Terminal
# @see https://en.wikipedia.org/wiki/GNOME_Terminal
community.general.pacman:
name:
- gnome-terminal
state: present