]> git.sur5r.net Git - i3/i3/commitdiff
i3-dmenu-desktop: remove %i from commandline
authorMichael Stapelberg <michael@stapelberg.de>
Sun, 3 Mar 2013 20:27:56 +0000 (21:27 +0100)
committerMichael Stapelberg <michael@stapelberg.de>
Sun, 3 Mar 2013 20:27:56 +0000 (21:27 +0100)
We don’t currently support the icon argument, but entirely not handling
%i leads to e.g. “digikam” not starting.

i3-dmenu-desktop

index 794120356e8dd8a15db063dd786302c7719c75bb..4c2bcec475b19d102d887580f09343a2b3ac4d06 100755 (executable)
@@ -382,6 +382,7 @@ $exec =~ s/%c/$name/g;
 # XXX: Icons are not implemented. Is the complexity (looking up the path if
 # only a name is given) actually worth it?
 #$exec =~ s/%i/--icon $icon/g;
+$exec =~ s/%i//g;
 
 # location of .desktop file
 $exec =~ s/%k/$location/g;