summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xicon-themes/breeze/update-icons.py24
1 files changed, 0 insertions, 24 deletions
diff --git a/icon-themes/breeze/update-icons.py b/icon-themes/breeze/update-icons.py
deleted file mode 100755
index 81014d295d23..000000000000
--- a/icon-themes/breeze/update-icons.py
+++ /dev/null
@@ -1,24 +0,0 @@
-#!/usr/bin/python3
-# Copyright 2014 Jonathan Riddell <jr@jriddell.org>
-# May be copied under the MPLv2
-# Map breeze freedesktop named icons to libreoffice icon names
-
-import os
-import subprocess
-
-if os.path.isdir("plasma-next-icons"):
- os.chdir("plasma-next-icons")
- subprocess.check_call(["git", "pull", "-r"])
- os.chdir("..")
-else:
- subprocess.check_call(["git", "clone", "https://github.com/NitruxSA/plasma-next-icons.git"])
-
-mapping = {}
-
-mappingFile = open('mapping', 'r')
-for line in mappingFile:
- freeDesktopFile = "plasma-next-icons/" + line.rsplit(" ")[0]
- libreOfficeFile = line.rsplit(" ")[1].rstrip()
- size = line.rsplit(" ")[2].rstrip()
- print(freeDesktopFile + " → " + libreOfficeFile + " @ " + size+"x"+size)
- subprocess.check_call(["ksvgtopng", size, size, freeDesktopFile, libreOfficeFile])