computer-playbook/roles/general/tasks/main.yml

72 lines
1.1 KiB
YAML

- name: install general software
community.general.pacman:
name:
# programing language interpreters
- jdk11-openjdk
- python
- php
# description language interpreters
- texlive-most
# compression tools
- p7zip
# administration tools
- base-devel
- yay
- make
- gcc
- cmake
- fdupes
# network analyze tools
- traceroute
- wireshark-qt
- wireshark-cli
# security tools
- ecryptfs-utils
- encfs
- keepassxc
# browsers
- chromium
# video/picture manipulation
- gimp
- blender
- obs-studio
# communication tools
- pidgin
# code quality tools
- shellcheck
# visualization tools
- dia
# ide's
- atom
- arduino
- arduino-docs
# virtualization tools
- qemu
# containerization tools
- docker
- docker-compose
# orchestration tools
- ansible
# entertainment software
- rhythmbox
# cloud
- nextcloud-client
state: present