diff options
author | Erich Eckner <erich.eckner.ext@bestsecret.com> | 2023-01-02 16:40:05 +0100 |
---|---|---|
committer | Erich Eckner <erich.eckner.ext@bestsecret.com> | 2023-01-02 16:40:56 +0100 |
commit | bc5b36f950dadfbe9dfb4f467aaf1b858e6f68a6 (patch) | |
tree | d4b421351a9a5fe0cfac009fadf4bed23cf567bc /google-chrome/google-chrome.install | |
parent | f42272aaa280956d77891d40039c9ba67bfb8882 (diff) | |
download | archlinuxewe-bc5b36f950dadfbe9dfb4f467aaf1b858e6f68a6.tar.xz |
google-chrome new
Diffstat (limited to 'google-chrome/google-chrome.install')
-rw-r--r-- | google-chrome/google-chrome.install | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/google-chrome/google-chrome.install b/google-chrome/google-chrome.install new file mode 100644 index 000000000..66ad3b77a --- /dev/null +++ b/google-chrome/google-chrome.install @@ -0,0 +1,22 @@ +# 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)" + +post_install() { + note "Custom flags should be put directly in: ~/.config/chrome-flags.conf" + note "The launcher is called: 'google-chrome-stable'" +} + +post_upgrade() { + post_install +} |