ungoogled-chromium.install 619 B

123456789101112131415161718192021222324252627282930
  1. # Colored makepkg-like functions
  2. msg_blue() {
  3. printf "${blue}==>${bold} ${1}${all_off}\n"
  4. }
  5. note() {
  6. printf "${yellow}==>${bold} ${1}${all_off}\n"
  7. }
  8. all_off="$(tput sgr0)"
  9. bold="${all_off}$(tput bold)"
  10. blue="${bold}$(tput setaf 4)"
  11. yellow="${bold}$(tput setaf 3)"
  12. post_install() {
  13. note "Pepper Flash is now auto-detected from: /usr/lib/PepperFlash/ (pepper-flash [AUR])
  14. echo
  15. note "Custom flags should be put directly in: ~/.config/chromium-flags.conf
  16. (CHROMIUM_FLAGS is deprecated.)"
  17. echo
  18. note "The launcher is called: 'ungoogled-chromium'"
  19. }
  20. post_upgrade() {
  21. post_install
  22. }