@@ -0,0 +1,5 @@ | |||||
--- | |||||
# tasks file for desktop-audio | |||||
- name: install pavucontrol | |||||
apt: name=pavucontrol state=latest |
@@ -0,0 +1,13 @@ | |||||
--- | |||||
# tasks file for desktop-bluetooth | |||||
# https://wiki.debian.org/BluetoothUser#Preparation | |||||
- name: install bluetooth support | |||||
apt: name=bluetooth state=latest | |||||
- name: enable bluetooth service | |||||
service: name=bluetooth enabled=yes state=started | |||||
- name: install bluedevil (for KDE) | |||||
apt: name=bluedevil state=latest |
@@ -0,0 +1,5 @@ | |||||
--- | |||||
# tasks file for desktop | |||||
- name: install gvim | |||||
apt: name=vim-gtk state=latest |
@@ -0,0 +1,16 @@ | |||||
--- | |||||
# tasks file for desktop | |||||
- name: install kde desktop | |||||
apt: name={{ item }} state=latest | |||||
with_items: | |||||
- kdm | |||||
- task-kde-desktop | |||||
- task-german | |||||
- task-german-desktop | |||||
- task-german-kde-desktop | |||||
- kio-mtp | |||||
- gwenview | |||||
- kipi-plugins | |||||
- kde-config-gtk-style | |||||
- qtcurve |
@@ -0,0 +1,6 @@ | |||||
--- | |||||
- name: install libreoffice | |||||
apt: pkg={{item}} state=latest | |||||
with_items: | |||||
- libreoffice | |||||
- libreoffice-l10n-de |
@@ -0,0 +1,10 @@ | |||||
--- | |||||
# tasks file for desktop | |||||
- name: install icedove | |||||
apt: name={{ item }} state=latest | |||||
with_items: | |||||
- icedove | |||||
- icedove-l10n-de | |||||
@@ -0,0 +1,16 @@ | |||||
--- | |||||
# tasks file for desktop | |||||
- include_role: | |||||
name: basic_desktop | |||||
- include: kde.yml | |||||
- include: libreoffice.yml | |||||
- include: audio.yml | |||||
- include: bluetooth.yml | |||||
- include: gvim.yml | |||||
#- include: youtube-dl.yml | |||||
- include: voip-client.yml | |||||
- include: mail.yml | |||||
- include: scanner.yml |
@@ -0,0 +1,9 @@ | |||||
--- | |||||
# tasks file for desktop | |||||
- name: install scan software | |||||
apt: name={{ item }} state=latest | |||||
with_items: | |||||
- simple-scan | |||||
@@ -0,0 +1,2 @@ | |||||
- name: install sflphone | |||||
apt: name=sflphone-kde state=latest |
@@ -0,0 +1,4 @@ | |||||
--- | |||||
# tasks file for web-dev-browser | |||||
- name: uninstall xul-ext-greasemonkey | |||||
apt: name=xul-ext-greasemonkey state=absent |
@@ -0,0 +1,3 @@ | |||||
--- | |||||
- name: install xpra | |||||
apt: pkg=xpra state=latest |
@@ -0,0 +1,6 @@ | |||||
--- | |||||
# tasks file for youtube-dl | |||||
- name: install youtube-dl package | |||||
apt: name=youtube-dl state=latest | |||||
- name: download latest youtube-dl | |||||
get_url: url=https://yt-dl.org/downloads/latest/youtube-dl dest=/usr/local/bin/youtube-dl mode=755 |