#!/bin/bash

post_install() {
    if [ "$(cat /etc/locale.conf | grep "LANG")" = "LANG=pt_BR.UTF-8" ]
    then
    echo ""
    echo -e "\e[34;1m==>\e[39;1m Flags personalizadas devem ser colocadas diretamente em: ~/.config/chrome-flags.conf \e[0m"
    echo ""
    else
    echo ""
    echo -e "\e[34;1m==>\e[39;1m Custom flags should be put directly in: ~/.config/chrome-flags.conf \e[0m"
    echo ""
    fi

    if [ "$(cat /etc/locale.conf | grep "LANG")" = "LANG=pt_BR.UTF-8" ]
    then
    echo ""
    echo -e "\e[34;1m==>\e[39;1m O iniciador é chamado: 'google-chrome-stable' \e[0m"
    echo ""
    else
    echo ""
    echo -e "\e[34;1m==>\e[39;1m The launcher is called: 'google-chrome-stable' \e[0m"
    echo ""
    fi
}
