summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Schendel2020-12-26 01:09:14 +0100
committerChristian Schendel2020-12-26 01:09:14 +0100
commitc12f8fa88dcb5f2f15b9058c64f18adbec7aa697 (patch)
tree2cafadf0d122c877d4eac9c0ab4dbd0e04455aaa
parentf5e4fdead0334b4b6ee6ea0afabc311a064b96d0 (diff)
downloadaur-c12f8fa88dcb5f2f15b9058c64f18adbec7aa697.tar.gz
tput is confused when using pamac. A fix is unknown to me
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD2
-rwxr-xr-xgnome-shell-extension-applications-overview-tooltip.install8
3 files changed, 6 insertions, 6 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 44eec1ac3f31..54652d9cbba4 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = gnome-shell-extension-applications-overview-tooltip-git
pkgdesc = Shows a tooltip over applications icons on applications overview
pkgver = 10.r2.g2e81270
- pkgrel = 7
+ pkgrel = 8
url = https://github.com/RaphaelRochet/applications-overview-tooltip
install = gnome-shell-extension-applications-overview-tooltip.install
arch = any
diff --git a/PKGBUILD b/PKGBUILD
index fc00ffd9c35f..82a384f1d83b 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=7
+pkgrel=8
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 918e93109709..0f2f84b309b8 100755
--- a/gnome-shell-extension-applications-overview-tooltip.install
+++ b/gnome-shell-extension-applications-overview-tooltip.install
@@ -1,8 +1,8 @@
# Colored makepkg-like functions
-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)"
+all_off="$(tput sgr0)"
+bold="${all_off}$(tput bold)"
+blue="${bold}$(tput setaf 4)"
+yellow="${bold}$(tput setaf 3)"
note() {
printf "${blue}==>${yellow} NOTE:${bold} $1${all_off}\n"