summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Schendel2020-12-25 20:41:51 +0100
committerChristian Schendel2020-12-25 20:41:51 +0100
commite908fe19037abc66997a51d610cabbdc6000afa0 (patch)
treedcd9772724e985960a55c6a0b4447fb8a2c8446d
parent2a99eda72b305c73744b73fefab45aed751510fd (diff)
downloadaur-e908fe19037abc66997a51d610cabbdc6000afa0.tar.gz
'tput -T xterm' in .install script
-rw-r--r--PKGBUILD2
-rwxr-xr-xgnome-shell-extension-applications-overview-tooltip.install9
2 files changed, 5 insertions, 6 deletions
diff --git a/PKGBUILD b/PKGBUILD
index e9bdf367af3a..fc00ffd9c35f 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,7 +1,7 @@
# Maintainer: Christian Schendel <doppelhelix at gmail dot com>
pkgname=gnome-shell-extension-applications-overview-tooltip-git
pkgver=10.r2.g2e81270
-pkgrel=6
+pkgrel=7
pkgdesc="Shows a tooltip over applications icons on applications overview"
arch=(any)
url="https://github.com/RaphaelRochet/applications-overview-tooltip"
diff --git a/gnome-shell-extension-applications-overview-tooltip.install b/gnome-shell-extension-applications-overview-tooltip.install
index e3e202fa4a20..918e93109709 100755
--- a/gnome-shell-extension-applications-overview-tooltip.install
+++ b/gnome-shell-extension-applications-overview-tooltip.install
@@ -1,9 +1,8 @@
# Colored makepkg-like functions
-TERM=dumb
-all_off="$(tput sgr0)"
-bold="${all_off}$(tput bold)"
-blue="${bold}$(tput setaf 4)"
-yellow="${bold}$(tput setaf 3)"
+all_off="$(tput -T xterm sgr0)"
+bold="${all_off}$(tput -T xterm bold)"
+blue="${bold}$(tput -T xterm setaf 4)"
+yellow="${bold}$(tput -T xterm setaf 3)"
note() {
printf "${blue}==>${yellow} NOTE:${bold} $1${all_off}\n"