diff options
author | Christopher Luck <kermitdafrog8@gmail.com> | 2023-06-03 01:29:40 +0100 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2023-06-03 10:38:25 +0700 |
commit | f8c831413fce4d4ad985c8d9d4ed00d5ac4d5632 (patch) | |
tree | cd81db4d267aafea99cdaad1708326a24d0a3560 /development/cutter/doinst.sh | |
parent | f93743402094a47432803d783dfee8d54e66cd83 (diff) |
development/cutter: Added (FOSS Reverse Engineering Platform)
Signed-off-by: bedlam <dave@slackbuilds.org>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'development/cutter/doinst.sh')
-rw-r--r-- | development/cutter/doinst.sh | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/development/cutter/doinst.sh b/development/cutter/doinst.sh new file mode 100644 index 0000000000000..a993650058d7a --- /dev/null +++ b/development/cutter/doinst.sh @@ -0,0 +1,10 @@ +if [ -x /usr/bin/update-desktop-database ]; then + /usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1 +fi + +# If other icon themes are installed, then add to/modify this as needed +if [ -e usr/share/icons/hicolor/icon-theme.cache ]; then + if [ -x /usr/bin/gtk-update-icon-cache ]; then + /usr/bin/gtk-update-icon-cache -f usr/share/icons/hicolor >/dev/null 2>&1 + fi +fi |