diff options
author | Mads Kjeldgaard | 2021-09-04 11:09:28 +0200 |
---|---|---|
committer | Mads Kjeldgaard | 2021-09-04 11:09:28 +0200 |
commit | a914ba4bd9ca15cf95ee28f0640584554c85031c (patch) | |
tree | 1ea1939a585ce245e086af4d9441f98fe206561b /info.install | |
download | aur-a914ba4bd9ca15cf95ee28f0640584554c85031c.tar.gz |
first
Diffstat (limited to 'info.install')
-rw-r--r-- | info.install | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/info.install b/info.install new file mode 100644 index 000000000000..fe4c0ec063a6 --- /dev/null +++ b/info.install @@ -0,0 +1,36 @@ +## arg 1: the new package version +#pre_install() { + # do something here +#} + +## arg 1: the new package version +post_install() { + echo "-------" + echo "stpv: Add these lines to your lf config to activate:" + echo -e "set previewer stpv +set cleaner stpvimgclr +&stpvimg --listen \$id" + echo "-------" +} + +## arg 1: the new package version +## arg 2: the old package version +#pre_upgrade() { + # do something here +#} + +## arg 1: the new package version +## arg 2: the old package version +#post_upgrade() { + # do something here +#} + +## arg 1: the old package version +#pre_remove() { + # do something here +#} + +## arg 1: the old package version +#post_remove() { + # do something here +#} |