#!/bin/bash # # AccountFree - Browse and use online services, free of account. # Copyright (C) 2021 Ad5001 # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # APPROOT="$(cd -P "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)" echo "Adding desktop file..." xdg-desktop-menu install "$APPROOT/linux/logarithmplotter.desktop" echo "Installing mime-type..." xdg-mime install "$APPROOT/linux/x-logarithm-plot.xml" echo "Installing icons..." xdg-icon-resource install --context mimetypes --novendor "$APPROOT/logplotterfile.svg" "application-x-logarithm-plot" xdg-icon-resource install --context apps --novendor "$APPROOT/logplotter.svg" "logarithmplotter" update-mime-database ~/.local/share/mime/ update-icon-caches ~/.local/share/icons/hicolor