diff options
author | Fabio Bas <ctrlaltca at> | 2022-04-29 09:03:29 +0100 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2022-04-30 13:51:54 +0700 |
commit | 25f965245f35829849f8ce508f8059e1f4ff384b (patch) | |
tree | a2e8d32c0bca5dd28b267e8765eee8c71115bbae /system/backintime/doinst.sh | |
parent | 34f533066233491e7865da05a8a583b519618002 (diff) |
system/backintime: Added (simple backup tool)
Signed-off-by: Dave Woodfall <dave@slackbuilds.org>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'system/backintime/doinst.sh')
-rw-r--r-- | system/backintime/doinst.sh | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/system/backintime/doinst.sh b/system/backintime/doinst.sh new file mode 100644 index 0000000000..aea0f894eb --- /dev/null +++ b/system/backintime/doinst.sh @@ -0,0 +1,13 @@ +if [ -x /usr/bin/update-desktop-database ]; then + /usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1 +fi + +if [ -x /usr/bin/update-mime-database ]; then + /usr/bin/update-mime-database usr/share/mime >/dev/null 2>&1 +fi + +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 |