-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmisc.yaml
More file actions
executable file
·138 lines (122 loc) · 4.23 KB
/
Copy pathmisc.yaml
File metadata and controls
executable file
·138 lines (122 loc) · 4.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
#!/usr/bin/env ansible-playbook
---
- name: "Install miscellaneous packages"
hosts: localhost
tasks:
- name: "Install Downgrade"
kewlfft.aur.aur:
name: downgrade # Bash script for downgrading one or more packages to a version in your cache or the A.L.A.
use: "{{ aur_helper }}"
state: present
become: true
become_user: "{{ aur_builder_user }}"
- name: "Install Brave browser"
kewlfft.aur.aur:
name: brave-bin # Web browser that blocks ads and trackers by default
use: "{{ aur_helper }}"
state: present
become: true
become_user: "{{ aur_builder_user }}"
- name: "Install Zoom"
kewlfft.aur.aur:
name: zoom # Video Conferencing and Web Conferencing Service
use: "{{ aur_helper }}"
state: present
become: true
become_user: "{{ aur_builder_user }}"
- name: "Install TLDR"
kewlfft.aur.aur:
name: tlrc-bin # Official tldr client written in Rust
use: "{{ aur_helper }}"
state: present
become: true
become_user: "{{ aur_builder_user }}"
- name: "Install OBS"
community.general.pacman:
name:
- obs-studio # Free, open source software for live streaming and recording
state: present
become: true
- name: "Install CUPS"
community.general.pacman:
name:
- cups # OpenPrinting CUPS - daemon package
state: present
become: true
- name: "Enable CUPS"
ansible.builtin.systemd:
name: cups
state: started
enabled: true
become: true
- name: "Install SANE"
community.general.pacman:
name:
- sane # Scanner Access Now Easy
state: present
become: true
- name: "Install Skanpage"
community.general.pacman:
name:
- skanpage # Utility to scan images and multi-page documents
state: present
become: true
- name: "Install PacCap"
community.general.pacman:
name:
- tcpdump # Powerful command-line packet analyzer
- wireshark-qt # Network traffic and protocol analyzer/sniffer - Qt GUI
- wireshark-cli # Network traffic and protocol analyzer/sniffer - CLI tools and data files
- termshark # Terminal UI for tshark, inspired by Wireshark
state: present
become: true
- name: "Install LibreOffice"
community.general.pacman:
name:
- libreoffice-fresh # LibreOffice branch which contains new features and program enhancements
- libreoffice-fresh-ru # Russian language pack for LibreOffice Fresh
state: present
become: true
- name: "Install VPN clients"
community.general.pacman:
name:
- openvpn # An easy-to-use, robust and highly configurable VPN (Virtual Private Network)
- wireguard-tools # next generation secure network tunnel - tools for configuration
- vortix # A TUI for WireGuard and OpenVPN with real-time telemetry and leak guarding
- v2ray # A platform for building proxies to bypass network restrictions
state: present
become: true
- name: "Install VLESS apps"
kewlfft.aur.aur:
name:
- v2raya-bin # A web GUI client of Project V which supports VMess, VLESS, SS, SSR, Trojan, Tuic and Juicity protocols
- sing-geoip-rule-set-git # GeoIP Rule Sets for sing-box
- sing-geosite-rule-set-git # Geosite Rule Sets for sing-box
- flclashx-bin # Fork of FlClash | A multi-platform proxy client based on ClashMeta, simple and easy to use, open-source and ad-free.
- clash-verge-rev-bin # Continuation of Clash Verge | A Clash Meta GUI based on Tauri
use: "{{ aur_helper }}"
state: present
become: true
become_user: "{{ aur_builder_user }}"
- name: "Install ExpressVPN"
kewlfft.aur.aur:
name:
- expressvpn # Proprietary VPN client for Linux
use: "{{ aur_helper }}"
state: present
become: true
become_user: "{{ aur_builder_user }}"
- name: "Install XFR"
kewlfft.aur.aur:
name:
- xfr-bin # A modern iperf3 alternative with a live TUI, multi-client server, and QUIC support
use: "{{ aur_helper }}"
state: present
become: true
become_user: "{{ aur_builder_user }}"
- name: "Install Trippy"
community.general.pacman:
name:
- trippy # A network diagnostic tool
state: present
become: true