blob: d618191ab7219c21fef47f63a406c5972a1a52ee (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/usr/bin/python3
import os
import subprocess
themedir = os.path.join(os.environ['MESON_INSTALL_PREFIX'], 'share', 'icons', 'hicolor')
if not os.environ.get('DESTDIR'):
print('Updating gtk icon cache... %s' % themedir)
subprocess.call(['gtk-update-icon-cache', '-f', '-t', themedir])
|