Initial
This commit is contained in:
88
roles/workstation/tasks/main.yml
Normal file
88
roles/workstation/tasks/main.yml
Normal file
@@ -0,0 +1,88 @@
|
||||
# Load distro-specific variables
|
||||
- include_vars: "{{ ansible_distribution }}.yml"
|
||||
tags: always
|
||||
|
||||
- block:
|
||||
## User configs
|
||||
- import_tasks: users/bzoicas.yml
|
||||
|
||||
## desktop environments
|
||||
|
||||
- include_tasks: desktop_environments/mate/appearance.yml
|
||||
when: mate is defined and mate == true
|
||||
|
||||
- include_tasks: desktop_environments/mate/caja.yml
|
||||
when: mate is defined and mate == true
|
||||
|
||||
- include_tasks: desktop_environments/mate/keybindings.yml
|
||||
when: mate is defined and mate == true
|
||||
|
||||
- include_tasks: desktop_environments/mate/packages.yml
|
||||
when: mate is defined and mate == true
|
||||
|
||||
- include_tasks: desktop_environments/mate/peripherals.yml
|
||||
when: mate is defined and mate == true
|
||||
|
||||
- include_tasks: desktop_environments/mate/terminal.yml
|
||||
when: mate is defined and mate == true
|
||||
|
||||
- include_tasks: desktop_environments/mate/workspace_settings.yml
|
||||
when: mate is defined and mate == true
|
||||
|
||||
- include_tasks: desktop_environments/gnome/appearance.yml
|
||||
when: gnome is defined and gnome == true
|
||||
|
||||
- include_tasks: desktop_environments/gnome/keybindings.yml
|
||||
when: gnome is defined and gnome == true
|
||||
|
||||
- include_tasks: desktop_environments/gnome/nautilus.yml
|
||||
when: gnome is defined and gnome == true
|
||||
|
||||
- include_tasks: desktop_environments/gnome/packages.yml
|
||||
when: gnome is defined and gnome == true
|
||||
|
||||
- include_tasks: desktop_environments/gnome/peripherals.yml
|
||||
when: gnome is defined and gnome == true
|
||||
|
||||
- include_tasks: desktop_environments/gnome/shell_settings.yml
|
||||
when: gnome is defined and gnome == true
|
||||
|
||||
- include_tasks: desktop_environments/gnome/terminal.yml
|
||||
when: gnome is defined and gnome == true
|
||||
|
||||
- include_tasks: desktop_environments/gnome/tracker.yml
|
||||
when: gnome is defined and gnome == true
|
||||
|
||||
## system setup
|
||||
#- import_tasks: system_setup/autofs.yml
|
||||
- import_tasks: system_setup/scripts.yml
|
||||
- import_tasks: system_setup/tweaks.yml
|
||||
|
||||
## install software
|
||||
- import_tasks: software/audacious.yml
|
||||
- import_tasks: software/audacity.yml
|
||||
- import_tasks: software/brave.yml
|
||||
- import_tasks: software/google_chrome.yml
|
||||
- import_tasks: software/codecs.yml
|
||||
- import_tasks: software/boto.yml
|
||||
- import_tasks: software/firefox.yml
|
||||
- import_tasks: software/google_chrome.yml
|
||||
- import_tasks: software/glimpse.yml
|
||||
- import_tasks: software/keepassxc.yml
|
||||
- import_tasks: software/libreoffice.yml
|
||||
- import_tasks: software/lutris.yml
|
||||
- import_tasks: software/misc_packages.yml
|
||||
- import_tasks: software/nextcloud.yml
|
||||
- import_tasks: software/packer.yml
|
||||
- import_tasks: software/solaar.yml
|
||||
- import_tasks: software/spotify.yml
|
||||
- import_tasks: software/steam.yml
|
||||
- import_tasks: software/thunderbird.yml
|
||||
- import_tasks: software/ulauncher.yml
|
||||
- import_tasks: software/virtualbox.yml
|
||||
- import_tasks: software/vlc.yml
|
||||
- import_tasks: software/vscodium.yml
|
||||
- import_tasks: software/sublime_text.yml
|
||||
|
||||
rescue:
|
||||
- set_fact: task_failed=true
|
||||
Reference in New Issue
Block a user