diff options
author | Gordian Edenhofer | 2017-11-11 13:03:58 +0100 |
---|---|---|
committer | Gordian Edenhofer | 2017-11-11 13:03:58 +0100 |
commit | bad79d099ad7aa62d5b4069fa53af3ead89be8a8 (patch) | |
tree | b0a4e3843ed1948e697c6aad1a83fc74665c0059 /libinput-gestures-git.install | |
parent | 91b4db899e5ee9184b48c9f3e0cb3d566ca4fa83 (diff) | |
download | aur-bad79d099ad7aa62d5b4069fa53af3ead89be8a8.tar.gz |
*.install: Instead of fancy `msg` use plain `echo`
Instead of relying on makepkg's built-in `msg` function simply use
`echo` without any coloring or similar beatifications.
Diffstat (limited to 'libinput-gestures-git.install')
-rw-r--r-- | libinput-gestures-git.install | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libinput-gestures-git.install b/libinput-gestures-git.install index 821f5ca69598..b76253bfaee9 100644 --- a/libinput-gestures-git.install +++ b/libinput-gestures-git.install @@ -1,6 +1,6 @@ _pkgname="libinput-gestures" post_install() { - echo -e "\e[34;1m==>\e[39;1m NOTE: You must be a member of the input group to have permission to read the touchpad device! \e[0m" - echo -e "\e[34;1m==>\e[39;1m NOTE: To start the daemon automatically on login use: ${_pkgname}-setup autostart \e[0m" + echo "You must be a member of the input group to have permission to read the touchpad device!" + echo "To start the daemon automatically on login use: ${_pkgname}-setup autostart" } |