Advertisement
Guest User

INSTALL

a guest
Sep 6th, 2020
195
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.88 KB | None | 0 0
  1. # arg 1:  the new package version including the release number hyphenated onto the end
  2. post_install() {
  3.     echo "Installing default icons..."
  4.     xdg-icon-resource install --novendor --theme hicolor --size 48 --context apps usr/share/renoise-${1%-*}/renoise-48.png renoise
  5.     xdg-icon-resource install --novendor --theme hicolor --size 64 --context apps usr/share/renoise-${1%-*}/renoise-64.png renoise
  6.     xdg-icon-resource install --novendor --theme hicolor --size 128 --context apps usr/share/renoise-${1%-*}/renoise-128.png renoise
  7. }
  8.  
  9. # arg 1:  the new package version including the release number hyphenated onto the end
  10. # arg 2:  the old package version including the release number hyphenated onto the end
  11. post_upgrade() {
  12.     echo "Updating default icons..."
  13.     xdg-icon-resource install --novendor --theme hicolor --size 48 --context apps usr/share/renoise-${1%-*}/renoise-48.png renoise
  14.     xdg-icon-resource install --novendor --theme hicolor --size 64 --context apps usr/share/renoise-${1%-*}/renoise-64.png renoise
  15.     xdg-icon-resource install --novendor --theme hicolor --size 128 --context apps usr/share/renoise-${1%-*}/renoise-128.png renoise
  16. }
  17.  
  18. # arg 1:  the old package version including the release number hyphenated onto the end
  19. post_remove() {
  20.     echo "Removing default icons..."
  21.     xdg-icon-resource uninstall --theme hicolor --size 48 --context mimetypes renoise application-x-renoise-module
  22.     xdg-icon-resource uninstall --theme hicolor --size 64 --context mimetypes renoise application-x-renoise-module
  23.     xdg-icon-resource uninstall --theme hicolor --size 128 --context mimetypes renoise application-x-renoise-module
  24.     xdg-icon-resource uninstall --theme hicolor --size 48 --context apps renoise
  25.     xdg-icon-resource uninstall --theme hicolor --size 64 --context apps renoise
  26.     xdg-icon-resource uninstall --theme hicolor --size 128 --context apps renoise
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement