-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathtasks_worktools.yml
More file actions
197 lines (168 loc) · 3.41 KB
/
Copy pathtasks_worktools.yml
File metadata and controls
197 lines (168 loc) · 3.41 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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
- name: Worktools | VI dependencies
apt:
state: present
pkg:
- vim-gui-common
- vim-runtime
become: true
tags:
-worktools
-setup
- name: Worktools | Vorta
apt:
state: present
pkg:
- vorta
become: yes
tags:
-worktools
-setup
- name: Worktools | Terminal session share tool
apt:
state: present
pkg:
- tmate
become: yes
tags:
-worktools
-setup
- name: Worktools | Hardware sensors lm-sensors
apt:
state: present
pkg:
- lm-sensors
become: yes
tags:
-worktools
-setup
- name: Worktools | DDCUTIL (display api management
apt:
state: present
pkg:
- ddcutil
become: yes
tags:
-worktools
-setup
- name: Worktools | Pass
apt:
state: present
pkg:
- pass
become: yes
tags:
-worktools
-setup
- name: Worktools | VLC
apt:
state: present
pkg:
- vlc
become: true
tags:
-worktools
-setup
- name: Worktools | HardInfo
apt:
state: present
pkg:
- hardinfo
become: yes
tags:
-worktools
-setup
- name: Worktools | NCDU
apt:
state: present
pkg:
- ncdu
become: yes
tags:
-worktools
-setup
- name: Worktools | HTOP
apt:
state: present
pkg:
- htop
become: yes
tags:
-worktools
-setup
- name: Worktools | Midnight Commander
apt: state=present pkg=mc
become: yes
tags:
-worktools
-setup
- name: Worktools | JQ
apt: state=present pkg=jq
become: yes
tags:
-worktools
-setup
- name: Worktools | Git-Flow
apt: state=present pkg=git-flow
become: yes
tags:
-worktools
-setup
- name: Worktools | MultiTail https://www.vanheusden.com/
apt: state=present pkg=multitail
become: yes
tags:
-worktools
-setup
- name: Worktools | unzip
apt: state=present pkg=unzip
become: yes
tags:
-worktools
-setup
- name: Worktools | p7zip
apt: name=p7zip-full state=latest
become: yes
tags:
-worktools
-setup
- name: Worktools | terminator
apt: name=terminator state=latest
become: yes
tags:
-worktools
-setup
- name: Worktools | direnv
apt: name=direnv state=latest
become: yes
tags:
-worktools
-setup
- name: Worktools | Download zellij tarball (1/4)
get_url:
url: https://github.com/zellij-org/zellij/releases/download/v0.40.1/zellij-x86_64-unknown-linux-musl.tar.gz
dest: /tmp/zellij-x86_64-unknown-linux-musl.tar.gz
- name: Worktools | Unpack zellij tarball (2/4)
shell: |
tar -xzvf /tmp/zellij-x86_64-unknown-linux-musl.tar.gz
args:
chdir: /tmp
- name: Worktools | Move zellij binary to /usr/local/bin (3/4)
shell: mv /tmp/zellij /usr/local/bin/
become: true
- name: Worktools | Ensure zellij is executable (4/4)
file:
path: /usr/local/bin/zellij
state: file
mode: '0755'
become: true
# ----------- copyq -----------
- name: Worktools | Add CopyQ PPA (1/2)
apt_repository:
repo: ppa:hluk/copyq
state: present
become: true
- name: Worktools | Install CopyQ (2/2)
apt:
name: copyq
state: present
become: true