multiple changes

This commit is contained in:
2021-02-24 17:39:50 +01:00
parent 18f9bcbc81
commit bac4eabc5d
9 changed files with 312 additions and 69 deletions

View File

@@ -0,0 +1,86 @@
# Load distro-specific variables
- include_vars: "{{ ansible_distribution }}.yml"
tags: always
- block:
## User configs
- import_tasks: users/rene.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/codecs.yml
# - import_tasks: software/chromium.yml
# - import_tasks: software/darktable.yml
# - import_tasks: software/firefox.yml
# - import_tasks: software/foliate.yml
# - import_tasks: software/google_chrome.yml
# - import_tasks: software/glimpse.yml
# - import_tasks: software/kdenlive.yml
# - import_tasks: software/keepassxc.yml
# - import_tasks: software/libreoffice.yml
# - import_tasks: software/linode-cli.yml
# - import_tasks: software/lutris.yml
# - import_tasks: software/mattermost.yml
# - import_tasks: software/misc_games.yml
# - import_tasks: software/misc_packages.yml
# - import_tasks: software/steam.yml
# - import_tasks: software/syncthing.yml
# - import_tasks: software/thunderbird.yml
# - import_tasks: software/virtualbox.yml
# - import_tasks: software/vivaldi.yml
# - import_tasks: software/vlc.yml
rescue:
- set_fact: task_failed=true

View File

@@ -0,0 +1,14 @@
- name: users | rene | remove preinstalled clutter from home directory
file:
path: /home/rene/{{ item }}
state: absent
with_items:
- examples.desktop
- Desktop
- Documents
- Downloads
- Music
- Pictures
- Public
- Templates
- Videos