Use spaces in xdg-icon script

This commit is contained in:
Marek Marczykowski-Górecki 2019-09-18 01:47:46 +02:00
parent 5c9903db46
commit 274c950af7
No known key found for this signature in database
GPG Key ID: 063938BA42CFA724

View File

@ -7,15 +7,15 @@ themes = ['Humanity', 'Adwaita', 'gnome', 'oxygen']
themes = themes + sorted([d for d in os.listdir("/usr/share/icons") if d not in themes and os.path.isdir("/usr/share/icons/" + d)])
if len(sys.argv) < 3:
print("Usage:", sys.argv[0], "ICON SIZE")
sys.exit(1)
print("Usage:", sys.argv[0], "ICON SIZE")
sys.exit(1)
for theme in themes:
icon = xdg.IconTheme.getIconPath(sys.argv[1], theme = theme, size = int(sys.argv[2]))
if icon is not None:
break
icon = xdg.IconTheme.getIconPath(sys.argv[1], theme = theme, size = int(sys.argv[2]))
if icon is not None:
break
if icon is None:
sys.exit(1)
sys.exit(1)
print(icon)