summarylogtreecommitdiffstats
path: root/pokeshell.install
diff options
context:
space:
mode:
authoracxz2022-09-05 18:06:23 -0400
committeracxz2022-09-05 18:06:23 -0400
commit4e7a2cbc3d98c800eae0472e1f568985c17c8a49 (patch)
tree51020a87806791e7cc7ed9f4addbcb50818b692d /pokeshell.install
parent473228eb19774cf423a2b31a8d295977e030d759 (diff)
downloadaur-pokeshell.tar.gz
upgpkg: pokeshell 1.0.0-8
change upstream source
Diffstat (limited to 'pokeshell.install')
-rw-r--r--pokeshell.install25
1 files changed, 0 insertions, 25 deletions
diff --git a/pokeshell.install b/pokeshell.install
deleted file mode 100644
index 73d1f534dce1..000000000000
--- a/pokeshell.install
+++ /dev/null
@@ -1,25 +0,0 @@
-post_install() {
- echo "put something like this at the end of your ~/.bashrc to get a random pokemon on every bash launch:"
- echo ""
- echo "cat /usr/share/pokeshell/\$((\$RANDOM % 151 + 1)).pokemon"
- echo ""
- echo "For fish shell you customize your greeting function by changing ~/.config/fish/functions/fish_prompt.fish:"
- echo ""
- echo "function fish_greeting"
- echo " set r (random)"
- echo " cat /usr/share/pokeshell/(math \"\$r % 151 + 1\").pokemon"
- echo "end"
-}
-
-post_upgrade() {
- echo "put something like this at the end of your ~/.bashrc to get a random pokemon on every bash launch:"
- echo ""
- echo "cat /usr/share/pokeshell/\$((\$RANDOM % 151 + 1)).pokemon"
- echo ""
- echo "For fish shell you customize your greeting function by changing ~/.config/fish/functions/fish_prompt.fish:"
- echo ""
- echo "function fish_greeting"
- echo " set r (random)"
- echo " cat /usr/share/pokeshell/(math \"\$r % 151 + 1\").pokemon"
- echo "end"
-}