summarylogtreecommitdiffstats
path: root/notion-app.install
blob: 426aaf50fd39c3859f088bebd547c6e164424ea6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
post_install() {
  ln -sf '/opt/Notion/notion-app' '/usr/bin/notion-app'

  # SUID chrome-sandbox for Electron 5+
  chmod 4755 '/opt/Notion/chrome-sandbox' || true

  update-mime-database /usr/share/mime || true
  update-desktop-database /usr/share/applications || true
}

post_remove() {
  rm -f '/usr/bin/notion-app'
}