12 lines
193 B
Bash
Executable File
12 lines
193 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
pkgname=mate-text-editor
|
|
|
|
if [ -f /usr/sbin/mateconfpkg ]; then
|
|
/usr/sbin/mateconfpkg --install ${pkgname}
|
|
fi
|
|
|
|
gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
|
|
|
|
exit 0
|