aur/google-chrome-dev.install
Christian Heusel 96fa720d94 upgpkg: google-chrome-dev 114.0.5696.0-1
upstream release

google-chrome-dev: rework the install message

Signed-off-by: Christian Heusel <christian@heusel.eu>
2023-04-20 18:18:12 +02:00

14 lines
400 B
Text

# Colored makepkg-like functions
note() {
printf "${_blue}==>${_yellow} NOTE:${_bold} %s${_all_off}\n" "$1"
}
_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-dev-flags.conf"
note "The launcher is called: 'google-chrome-unstable'"
}