-
-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
195 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
--- | ||
- name: "Starship | {{ ansible_distribution }} | Install Starship" | ||
ansible.builtin.command: | ||
cmd: which starship | ||
cmd: which starship | ||
register: starship_installed | ||
changed_when: false | ||
|
||
- name: "Starship | {{ ansible_distribution }} | Install Starship" | ||
when: starship_installed.rc != 0 | ||
ansible.builtin.shell: | ||
cmd: curl -fsSL https://starship.rs/install.sh | sudo sh -s -- --force | ||
cmd: set -o pipefail && curl -fsSL https://starship.rs/install.sh | sudo sh -s -- --force | ||
args: | ||
creates: /usr/local/bin/starship |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
#!/usr/bin/env zsh | ||
|
||
alias update='sudo apt update && sudo apt upgrade -y && sudo apt autoremove -y' | ||
if command -v task &> /dev/null; then | ||
alias update='task -g upgrade' | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters