summaryrefslogtreecommitdiff
path: root/icon-themes
diff options
context:
space:
mode:
authorandreas_k <kainz.a@gmail.com>2016-10-24 20:26:59 +0200
committerYousuf Philips <philipz85@hotmail.com>2016-10-24 18:43:59 +0000
commite28b8b779b1465d72bc089138fde925e34e11893 (patch)
tree1173165f46e79379db71cfb1075ebe3a45055523 /icon-themes
parent2ed5057993fa8d0f57531303e6c9fafc37138737 (diff)
remove link to github cause breeze_svg are now in core
Change-Id: Ib30c7c7a9f2fecc108ea47b05f558a2ce8e6bf91 Reviewed-on: https://gerrit.libreoffice.org/30232 Reviewed-by: Yousuf Philips <philipz85@hotmail.com> Tested-by: Yousuf Philips <philipz85@hotmail.com>
Diffstat (limited to 'icon-themes')
-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])