diff --git a/data/pokeget/eevee.txt b/data/pokeget/eevee.txt new file mode 100644 index 0000000..2ade19f --- /dev/null +++ b/data/pokeget/eevee.txt @@ -0,0 +1,9 @@ + ▄▄▄▄ + ▄▄▄▄▄▄ ▄▄▄▄▄▄▄▄▄ + ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ +▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▀ +▄▄▄▄▄▄▄▄▄▄▄▄▄▄▀ +▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ +▀▄▄▄▄▄▄▄▄▄▄▄▄▄▄ + ▀▄▄▄▄▄▄▀ ▀▀ + ▀▀▄▄▀ diff --git a/data/pokeget/squirtle.txt b/data/pokeget/squirtle.txt new file mode 100644 index 0000000..a77bf9f --- /dev/null +++ b/data/pokeget/squirtle.txt @@ -0,0 +1,9 @@ + ▄▄▄▄▄▄▄ ▄▄▄▄▄ + ▄▄▄▄▄▄▄▄▄▄▄▄ ▄▄▄▄▄▄▄ +▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▀ +▀▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▀ + ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▀ + ▀▀▄▄▄▄▄▄▄▄▄▄▄ + ▄▄▄▄▄▄▄▄▄▄▄ + ▀▀ ▀▄▄▄▄▄ + ▀▀▀ diff --git a/data/zsh/bottom-zshrc b/data/zsh/bottom-zshrc index 0f876f2..a9dc6dc 100644 --- a/data/zsh/bottom-zshrc +++ b/data/zsh/bottom-zshrc @@ -68,7 +68,7 @@ if command -v nnn &>/dev/null; then fi # https://github.com/talwat/pokeget-rs -rand_poke=$((RANDOM % 4)) +rand_poke=$((RANDOM % 6)) if [[ $rand_poke -eq 0 ]]; then cat ~/.config/pokeget/pikachu.txt elif [[ $rand_poke -eq 1 ]]; then @@ -77,6 +77,10 @@ elif [[ $rand_poke -eq 2 ]]; then cat ~/.config/pokeget/ditto.txt elif [[ $rand_poke -eq 3 ]]; then cat ~/.config/pokeget/chikorita.txt +elif [[ $rand_poke -eq 4 ]]; then + cat ~/.config/pokeget/eevee.txt +elif [[ $rand_poke -eq 5 ]]; then + cat ~/.config/pokeget/squirtle.txt fi # Depend on your company diff --git a/scripts/cargo.sh b/scripts/cargo.sh index 1116c9c..5366d3d 100755 --- a/scripts/cargo.sh +++ b/scripts/cargo.sh @@ -15,3 +15,5 @@ pokeget --hide-name pikachu >data/pokeget/pikachu.txt pokeget --hide-name clefairy >data/pokeget/clefairy.txt pokeget --hide-name ditto >data/pokeget/ditto.txt pokeget --hide-name chikorita >data/pokeget/chikorita.txt +pokeget --hide-name eevee >data/pokeget/eevee.txt +pokeget --hide-name squirtle >data/pokeget/squirtle.txt diff --git a/scripts/go.sh b/scripts/go.sh index ac82029..2996bac 100755 --- a/scripts/go.sh +++ b/scripts/go.sh @@ -19,3 +19,5 @@ go install github.com/golangci/golangci-lint/cmd/golangci-lint@latest go install golang.org/x/tools/go/analysis/passes/fieldalignment/cmd/fieldalignment@latest go install gotest.tools/gotestsum@latest go install github.com/maruel/panicparse/v2@latest + +go install github.com/ankitpokhrel/jira-cli/cmd/jira@latest