--- mods/desktopparser.d.new 2017-06-02 13:51:38.977493029 +0200 +++ ../src/asgen/handlers/desktopparser.d 2017-06-02 13:53:30.035139228 +0200 @@ -133,7 +133,7 @@ try { // check if we should ignore this .desktop file auto dtype = df.getString (DESKTOP_GROUP, "Type"); - if ((dtype.toLower () != "application") && (dtype.toLower () != "zomando")) + if (dtype.toLower () != "application") // ignore this file, it isn't describing an application return null; }