Skip to content

Commit 1581e00

Browse files
committed
chore: add clapgrep and wave terminal
1 parent c0034b9 commit 1581e00

File tree

5 files changed

+23
-2
lines changed

5 files changed

+23
-2
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
*.log
22
.venv
33
.ansible_galaxy
4-
.tags
4+
tags

docs/APPLICATIONS.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -191,6 +191,8 @@ In this section will be listed all the Graphical Applications. A separate sectio
191191
- [Calligraphy](https://flathub.org/apps/dev.geopjr.Calligraphy) - Calligraphy turns short texts into large, impressive banners made up of ASCII Characters, ready to be copied or exported to images.
192192
- [ASCII Draw](https://flathub.org/apps/io.github.nokse22.asciidraw) - Draw diagrams, tables, tree view, art and more using only characters-
193193
- [kepubify](https://github.com/pgaskin/kepubify) - Fast, standalone EPUB to Kobo EPUB conversion tool.
194+
- [Clapgrep](moz-extension://0c870bdd-05bf-4804-aadb-745cdcf07219/) - One app to search through all your files, powered by ripgrep
195+
- [Wave Terminal](https://www.waveterm.dev/)
194196

195197
---
196198

playbooks/setup.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,8 @@
256256
- { role: frog, tags: [frog, utilities, flatpak] }
257257
- { role: asciidraw, tags: [asciidraw, utilities, flatpak] }
258258
- { role: kepubify, tags: [kepubify, utilities, github] }
259-
259+
- { role: clapgrep, tags: [clapgrep, utilities, flatpak] }
260+
- { role: waveterm, tags: [waveterm, utilities] }
260261
# =============================================
261262
# Finance
262263
# =============================================

roles/clapgrep/main.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
- name: Install
2+
community.general.flatpak:
3+
name: de.leopoldluley.Clapgrep
4+
state: present

roles/waveterm/tasks/main.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
- name: Get latest release
2+
community.general.github_release:
3+
action: latest_release
4+
user: wavetermdev
5+
repo: waveterm
6+
token: '{{ github_token }}'
7+
register: release
8+
9+
- name: Download RPM Install
10+
ansible.builtin.dnf:
11+
name: https://github.com/wavetermdev/waveterm/releases/download/{{ release.tag }}/waveterm-linux-x86_64-{{ release.tag[1:] }}.rpm
12+
state: present
13+
disable_gpg_check: true
14+
become: true

0 commit comments

Comments
 (0)