Skip to content

Commit

Permalink
updates
Browse files Browse the repository at this point in the history
  • Loading branch information
brpaz committed Sep 7, 2024
1 parent a476d9c commit 943c781
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 8 deletions.
7 changes: 3 additions & 4 deletions docs/APPLICATIONS.md
Original file line number Diff line number Diff line change
Expand Up @@ -228,8 +228,8 @@ I use ZSH shell with the following extras:
* [antidote](https://github.com/mattmc3/antidote) - Antidote is a feature complete Zsh implementation of the legacy Antibody plugin manager.
* [zsh-completions](https://github.com/zsh-users/zsh-completions) - Additional completion definitions for Zsh.
* [zsh-you-should-use](https://github.com/MichaelAquilina/zsh-you-should-use) - ZSH plugin that reminds you to use existing aliases for commands you just typed.
* [zoxide](https://github.com/ajeetdsouza/zoxide) - A smarter cd command. Supports all major shells.
- [yorukot/superfile](https://github.com/yorukot/superfile) - Pretty fancy and modern terminal file manager.
- [zoxide](https://github.com/ajeetdsouza/zoxide) - A smarter cd command. Supports all major shells.
* [urbainvaes/fzf-marks](https://github.com/urbainvaes/fzf-marks) - Plugin to manage bookmarks in bash and zsh
* [fzf](https://github.com/junegunn/fzf) - A command-line fuzzy finder
* [fd](https://github.com/sharkdp/fd) - A simple, fast and user-friendly alternative to 'find'
Expand All @@ -243,7 +243,6 @@ I use ZSH shell with the following extras:
* [pandoc](https://github.com/jgm/pandoc) - Universal markup converter
* [glow](https://github.com/charmbracelet/glow) - Render markdown on the CLI
* [lnav](http://lnav.org/) - The Log File Navigator
* [hasha-cli](https://github.com/sindresorus/hasha-cli) - hashing made simple. Get the hash of text or stdin.

### Multimedia

Expand Down Expand Up @@ -271,8 +270,8 @@ I use ZSH shell with the following extras:
* [conventional-changelog](https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/conventional-changelog-cli#readme)
* [commitizen/cz-cli](https://github.com/commitizen/cz-cli) - The commitizen command line utility.
* [goreleaser/goreleaser](https://github.com/goreleaser/goreleaser) - Deliver Go binaries as fast and easily as possible.
* [cezaraugusto/mklicense](https://github.com/cezaraugusto/mklicense) - CLI tool for generating Licenses\. Easily\.
* [TejasQ/add-gitignore](https://github.com/TejasQ/add-gitignore) - An interactive CLI tool that adds a .gitignore to your projects.
* [cezaraugusto/mklicense](https://github.com/cezaraugusto/mklicense) - CLI tool for generating Licenses. Easily.
* [conduct - npm](https://www.npmjs.com/package/conduct)

### Project Scaffolding

Expand Down
3 changes: 1 addition & 2 deletions roles/ktop/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

- name: Download and extract archive
ansible.builtin.unarchive:
src: https://github.com/vladimirvivien/ktop/releases/download/{{ release.tag }}/ktop_{{release.tag }}_linux_amd64.tar.gz
src: https://github.com/vladimirvivien/ktop/releases/download/{{ release.tag }}/ktop_{{ release.tag }}_linux_amd64.tar.gz
dest: '{{ setup_dir }}'
remote_src: true
become: true
Expand All @@ -19,4 +19,3 @@
dest: "{{ bin_dir }}/ktop"
mode: a+x
become: true

4 changes: 2 additions & 2 deletions roles/netscanner/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@
ignore_errors: true

- name: Fail if cargo is not installed
fail:
ansible.builtin.fail:
msg: "cargo is not installed"
when: cargo_version.rc != 0

- name: Install netscanner
ansible.builtin.command:
cmd: cargo install netscanner
args:
creates: /{{ ansible_env.HOME }}/.cargo/bin/netscanner
creates: /{{ ansible_env.HOME }}/.cargo/bin/netscanner
1 change: 1 addition & 0 deletions roles/python/defaults/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
python_pip_executable: /usr/bin/pip
2 changes: 2 additions & 0 deletions roles/python/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,5 @@
- black
- setuptools
- pipx
- poetry
executable: "{{ python_pip_executable }}" # required to avoid installing on the venv used by ansible

0 comments on commit 943c781

Please sign in to comment.