mirror of
https://github.com/kevinveenbirkenbach/client-playbook.git
synced 2024-11-14 11:51:04 +01:00
52 lines
846 B
YAML
52 lines
846 B
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
|
|
|
|
# code quality tools
|
|
- shellcheck
|
|
|
|
# ide's
|
|
- atom
|
|
- arduino
|
|
- arduino-docs
|
|
|
|
# virtualization tools
|
|
- qemu
|
|
state: present
|