summarylogtreecommitdiffstats
path: root/zotero-beta.install
diff options
context:
space:
mode:
authorIsaac Curtis2017-02-08 12:21:57 -0800
committerIsaac Curtis2017-02-08 12:38:52 -0800
commit7fa5fc4f27be6b60e2c01291740af6a250f2621f (patch)
tree8c39951ec69ce1fc0967e93861bc7d8ced61b63a /zotero-beta.install
downloadaur-7fa5fc4f27be6b60e2c01291740af6a250f2621f.tar.gz
Package creation
Diffstat (limited to 'zotero-beta.install')
-rw-r--r--zotero-beta.install13
1 files changed, 13 insertions, 0 deletions
diff --git a/zotero-beta.install b/zotero-beta.install
new file mode 100644
index 000000000000..565a7caface3
--- /dev/null
+++ b/zotero-beta.install
@@ -0,0 +1,13 @@
+post_install() {
+ echo "Maybe you want the context menu icons enabled. This can be done in dconf or using the CLI:"
+ echo "gsettings set org.gnome.desktop.interface menus-have-icons true"
+ echo "DISCLAIMER: Notice that this is a system-wide configuration and it will change appearence in other programs too."
+
+}
+
+post_upgrade() {
+ # Only show information if upgrading from 4.0.6 or older
+ if [ $(vercmp $2 4.0.6-1) -le 0 ]; then
+ post_install
+ fi
+}