diff options
author | Philip van der Hoeven <philip@vd-hoeven.nl> | 2017-08-04 23:37:04 +0100 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2017-08-05 07:07:38 +0700 |
commit | 07741a0fd577cc57e951cf095973ad4a8129a1fd (patch) | |
tree | dbd12206466468efc360896e64a649100098b5e6 /system/tilix/doinst.sh | |
parent | 600b3a3b352bb0f80dbc9f45f23bbfb2cc8cdb93 (diff) | |
download | slackbuilds-07741a0fd577cc57e951cf095973ad4a8129a1fd.tar.gz |
system/tilix: Added (Tiling terminal emulator).
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
Diffstat (limited to 'system/tilix/doinst.sh')
-rw-r--r-- | system/tilix/doinst.sh | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/system/tilix/doinst.sh b/system/tilix/doinst.sh new file mode 100644 index 0000000000..401d987795 --- /dev/null +++ b/system/tilix/doinst.sh @@ -0,0 +1,15 @@ +if [ -x /usr/bin/update-desktop-database ]; then + /usr/bin/update-desktop-database -q usr/share/applications >/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 + +if [ -e usr/share/glib-2.0/schemas ]; then + if [ -x /usr/bin/glib-compile-schemas ]; then + /usr/bin/glib-compile-schemas usr/share/glib-2.0/schemas >/dev/null 2>&1 + fi +fi |