google-chrome/google-chrome.install

23 lines
477 B
Plaintext
Raw Normal View History

2015-06-14 01:13:27 +00:00
# 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() {
2015-08-26 17:36:59 +00:00
note "Custom flags should be put directly in: ~/.config/chrome-flags.conf"
2015-06-14 01:13:27 +00:00
note "The launcher is called: 'google-chrome-stable'"
}
post_upgrade() {
post_install
}