Add essential tools

This commit is contained in:
Oliver Traber 2023-11-26 22:04:12 +01:00
parent b81c96930e
commit faa0adf9a7
Signed by: Bluemedia
GPG key ID: C0674B105057136C
5 changed files with 21 additions and 1 deletions

View file

@ -2,3 +2,4 @@
roles:
- common
- desktop-environment
- essential-tools # Thunar File Manager, Firefox, KeePassXC, Nextcloud Desktop

View file

@ -0,0 +1,2 @@
dependencies:
- role: common

View file

@ -213,7 +213,9 @@ exec hash dbus-update-activation-environment 2>/dev/null && \
exec waybar
# Autostart applications
{% if nextcloud == true %}
exec --no-startup-id nextcloud --background
{% endif %}
# Theme colors
client.focused #c6c6c6 #1f1f1f #c6c6c6 #8abeb7 #8abeb7

View file

@ -0,0 +1,5 @@
dependencies:
- role: common
- role: desktop-environment
vars:
nextcloud: true

View file

@ -0,0 +1,10 @@
- name: Install essential tools
become: yes
apt:
state: latest
install_recommends: false
name:
- thunar
- firefox
- keepassxc
- nextcloud-desktop