summaryrefslogtreecommitdiff
path: root/render-icon-theme.py
diff options
context:
space:
mode:
authorJakub Steiner <jimmac@gmail.com>2018-10-19 09:01:21 +0200
committerJakub Steiner <jimmac@gmail.com>2018-10-19 09:01:21 +0200
commit8d12f0a2bfe3369ae2932811e4c7035543da8e05 (patch)
tree961999741274261e0b072d20d75d035b18222cc7 /render-icon-theme.py
parentdfb85283f30fd4ea920240673d874aee4a96b65c (diff)
downloadadwaita-icon-theme-8d12f0a2bfe3369ae2932811e4c7035543da8e05.tar.gz
retire fullcolor action icons
- step1 -- move to legacy context See Issue #15 for more context
Diffstat (limited to 'render-icon-theme.py')
-rwxr-xr-xrender-icon-theme.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/render-icon-theme.py b/render-icon-theme.py
index 5badaeba6..1fcf949ae 100755
--- a/render-icon-theme.py
+++ b/render-icon-theme.py
@@ -5,7 +5,6 @@ import sys
import xml.sax
import subprocess
-INKSCAPE = '/usr/bin/inkscape'
OPTIPNG = '/usr/bin/optipng'
ZOPFLIPNG = '/usr/bin/zopflipng'
SRC = os.path.join('.', 'src', 'fullcolor')
@@ -36,7 +35,7 @@ def wait_for_prompt(process, command=None):
output = output[1:]
def start_inkscape():
- process = subprocess.Popen([INKSCAPE, '--shell'], bufsize=0, stdin=subprocess.PIPE, stdout=subprocess.PIPE)
+ process = subprocess.Popen(['flatpak','run','org.inkscape.Inkscape','--shell'], bufsize=0, stdin=subprocess.PIPE, stdout=subprocess.PIPE)
wait_for_prompt(process)
return process