summarylogtreecommitdiffstats
path: root/nextshot.install
diff options
context:
space:
mode:
Diffstat (limited to 'nextshot.install')
-rw-r--r--nextshot.install15
1 files changed, 15 insertions, 0 deletions
diff --git a/nextshot.install b/nextshot.install
new file mode 100644
index 000000000000..746b9b86cb9a
--- /dev/null
+++ b/nextshot.install
@@ -0,0 +1,15 @@
+#!/usr/bin/env bash
+
+readonly info=$'\e[36m'
+readonly warn=$'\e[33m'
+readonly reset=$'\e[0m'
+
+post_install() {
+ echo "${info}Thanks for installing Nextshot!"
+ echo "${warn}Dependencies vary based on your current environment."
+ echo "Run 'nextshot --deps' after configuration to ensure you have all required packages.${reset}"
+}
+
+post_upgrade() {
+ post_install "$1"
+}