summarylogtreecommitdiffstats
path: root/note.install
diff options
context:
space:
mode:
authordetiam2024-03-16 19:29:07 +0800
committerdetiam2024-03-16 19:29:07 +0800
commit6500c141812ad3a1ac2e7a1e4dd64be6977efd3b (patch)
tree06b539378b5ec92543e100016d82edffd119c733 /note.install
parent7faf35088b9596c11896caf330008426b9c6dda3 (diff)
downloadaur-6500c141812ad3a1ac2e7a1e4dd64be6977efd3b.tar.gz
update desktop icon
Diffstat (limited to 'note.install')
-rw-r--r--note.install18
1 files changed, 18 insertions, 0 deletions
diff --git a/note.install b/note.install
new file mode 100644
index 000000000000..4c78ba5d23b1
--- /dev/null
+++ b/note.install
@@ -0,0 +1,18 @@
+# Colored makepkg-like functions
+msg_blue() {
+ printf "${blue}==>${bold} $1${all_off}\n"
+}
+
+note() {
+ printf "${blue}==>${yellow} NOTE:${bold} $1${all_off}\n"
+}
+
+all_off="$(tput sgr0)"
+bold="${all_off}$(tput bold)"
+blue="${bold}$(tput setaf 4)"
+yellow="${bold}$(tput setaf 3)"
+
+pre_remove() {
+ note 'You probably want to remove the following file.'
+ msg_blue "\${XDG_DATA_HOME:-"\$HOME/.local/share"}/icons/hicolor/256x256/apps/PINCE.png"
+}