summarylogtreecommitdiffstats
path: root/lantern.install
diff options
context:
space:
mode:
authorJaHIY2015-08-22 21:11:40 +0800
committerJaHIY2015-08-22 21:11:40 +0800
commit5ac1a9d55932450e793f1b521b4bfcaa26851838 (patch)
treededdc1a69a02c6790daa6b8af8af01fbdae2e992 /lantern.install
parentacca587dfeff37c5b6043d4db47c2ca194d588eb (diff)
downloadaur-5ac1a9d55932450e793f1b521b4bfcaa26851838.tar.gz
modify version and clean code
Diffstat (limited to 'lantern.install')
-rw-r--r--lantern.install33
1 files changed, 33 insertions, 0 deletions
diff --git a/lantern.install b/lantern.install
new file mode 100644
index 000000000000..fa46fd905850
--- /dev/null
+++ b/lantern.install
@@ -0,0 +1,33 @@
+# Colored makepkg-like functions
+all_off="$(tput sgr0)"
+bold="${all_off}$(tput bold)"
+blue="${bold}$(tput setaf 4)"
+yellow="${bold}$(tput setaf 3)"
+
+msg_blue() {
+ printf "${blue}==>${bold} $1${all_off}\n"
+}
+
+note() {
+ printf "${blue}==>${yellow} NOTE:${bold} $1${all_off}\n"
+}
+
+_update() {
+ msg_blue "Updating desktop MIME database..."
+ update-desktop-database -q
+
+ msg_blue "Updating icon cache.."
+ xdg-icon-resource forceupdate --theme hicolor &>/dev/null
+}
+
+post_install() {
+ _update
+}
+
+post_upgrade() {
+ _update
+}
+
+post_remove() {
+ _update
+}