1
0
Fork 0
mirror of https://github.com/roles-ansible/ansible_role_xrandr_help.git synced 2024-08-16 10:09:52 +02:00

start creating this role

This commit is contained in:
Lilian Roller 2019-04-26 09:42:14 +02:00
parent d8e871501a
commit b66b366a39
No known key found for this signature in database
GPG key ID: 5215C3441797AB2B
5 changed files with 50 additions and 0 deletions

2
defaults/main.yml Normal file
View file

@ -0,0 +1,2 @@
---
install_graphical_application: true

12
tasks/main.yml Normal file
View file

@ -0,0 +1,12 @@
---
- name: Include OS Specific vars
include_vars: "{{ ansible_os_family }}.yml"
- name: Install xrandr
- name: Install arandr gui
become: true
package:
name:
state: present
when: install_graphical_application

12
vars/Archlinux.yml Normal file
View file

@ -0,0 +1,12 @@
---
xrandr_package:
- libxrandr
- xorg-xrandr
- lib32-libxrandr
graphical_xrandr_packages:
- arandr
- lxrandr-gtk3
autorandr:
- autorandr

12
vars/Debian.yml Normal file
View file

@ -0,0 +1,12 @@
---
xrandr_package:
- libxrandr
- xorg-xrandr
- lib32-libxrandr
graphical_xrandr_packages:
- arandr
- lxrandr-gtk3
autorandr:
- autorandr

12
vars/RedHat.yml Normal file
View file

@ -0,0 +1,12 @@
---
xrandr_package:
- libxrandr
- xorg-xrandr
- lib32-libxrandr
graphical_xrandr_packages:
- arandr
- lxrandr-gtk3
autorandr:
- autorandr