Initial commit

This commit is contained in:
Christian Schendel 2025-09-04 21:52:54 +02:00
commit 305cf9b127
Signed by: doppelhelix
GPG key ID: 5874D2437CD5BBB3
12 changed files with 1215 additions and 0 deletions

14
google-chrome-bin.install Normal file
View file

@ -0,0 +1,14 @@
# 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-flags.conf"
note "The launcher is called: 'google-chrome-stable'"
}