Skip to content

Commit 06f834b

Browse files
committed
updates
1 parent 943c781 commit 06f834b

File tree

5 files changed

+44
-2
lines changed

5 files changed

+44
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ This will rsync the most important folders like `Documents`, `Video`, `Music`, `
6464
- [WebCatalog Desktop for Mac, Windows, Linux - WebCatalog](https://webcatalog.io/en/desktop/)
6565
- [script-kit/app](https://github.com/script-kit/app/releases/tag/v2.3.0)
6666
- [Proxyman Proxyman - macOS, iOS, Windows and Linux](https://proxyman.io/download)
67-
67+
- [heyman/heynote: A dedicated scratchpad for developers](https://github.com/heyman/heynote/)
6868

6969
#### WebCatalog
7070

docs/APPLICATIONS.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ In this section will be listed all the Graphical Applications. A separate sectio
5656
* [Remembrance](https://flathub.org/apps/details/io.github.dgsasha.Remembrance) - Set reminders for anything you need help remembering.
5757
* [Xournal++](https://flathub.org/apps/com.github.xournalpp.xournalpp) - Xournal++ is a hand note-taking software written in C++ with the target of flexibility, functionality and speed.
5858
* [Folio](https://flathub.org/apps/com.toolstack.Folio) - Create notebooks, take notes in markdown
59+
- [heynote](https://github.com/heyman/heynote/) - A dedicated scratchpad for developers
5960

6061
---
6162

playbooks/setup.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,6 +139,7 @@
139139
# Development
140140
# =============================================
141141
- { role: git, tags: [git, github, dev] }
142+
- { role: docker, tags: [docker, dev] }
142143
- { role: java, tags: [java, dev, programming-language] }
143144
- { role: node, tags: [node, dev, programming-language] }
144145
- { role: python, tags: [python, dev, programming-language] }
@@ -192,6 +193,7 @@
192193
# =============================================
193194
# CLI Tools
194195
# =============================================
196+
- { role: exa, tags: [exa, cli, github] }
195197
- { role: bat, tags: [bat, github] }
196198
- { role: fzf, tags: [fzf, cli, github] }
197199
- { role: fd, tags: [fd, cli, github] }
@@ -216,11 +218,11 @@
216218
- { role: superfile, tags: [superfile, cli, github] }
217219
- { role: copier, tags: [copier, utilities] }
218220
- { role: brotab, tags: [brotab, utilities] }
219-
- { role: docker, tags: [docker, dev] }
220221
- { role: zoxide, tags: [zoxide]}
221222
- { role: micro, tags: [micro, github]}
222223
- { role: glances, tags: [glances, tui, utilities] }
223224
- { role: netscanner, tags: [netscanner, tui, utilities] }
225+
- { role: tmux, tags: [tmux, tui, utilities] }
224226

225227
# =============================================
226228
# Utilities

roles/exa/tasks/main.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
- name: Get Latest Release from GitHub
2+
community.general.github_release:
3+
action: latest_release
4+
user: eza-community
5+
repo: eza
6+
register: eza_release
7+
8+
- name: Download and Extract
9+
ansible.builtin.unarchive:
10+
src: "https://github.com/eza-community/eza/releases/download/{{ eza_release.tag }}/eza_x86_64-unknown-linux-gnu.tar.gz"
11+
dest: "{{ setup_dir }}"
12+
remote_src: yes
13+
14+
- name: Install
15+
ansible.builtin.copy:
16+
src: "{{ setup_dir }}/eza"
17+
dest: '{{ bin_dir }}/exa'
18+
mode: a+x
19+
become: true
20+
21+
22+

roles/tmux/tasks/main.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
- name: Install
2+
ansible.builtin.dnf:
3+
name: tmux
4+
state: present
5+
become: true
6+
7+
- name: Check Ruby is installed
8+
ansible.builtin.command:
9+
cmd: ruby -v
10+
register: ruby_version
11+
failed_when: ruby_version.rc != 0
12+
13+
- name: Install Tmuxinator
14+
ansible.builtin.gem:
15+
name: tmuxinator
16+
state: present
17+
user_install: true

0 commit comments

Comments
 (0)