From: Michael Stapelberg Date: Sun, 3 Mar 2013 20:27:56 +0000 (+0100) Subject: i3-dmenu-desktop: remove %i from commandline X-Git-Tag: 4.5~4 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=8327f837a08819b1169f73b3e55e4ffbfeacddf9;p=i3%2Fi3 i3-dmenu-desktop: remove %i from commandline We don’t currently support the icon argument, but entirely not handling %i leads to e.g. “digikam” not starting. --- diff --git a/i3-dmenu-desktop b/i3-dmenu-desktop index 79412035..4c2bcec4 100755 --- a/i3-dmenu-desktop +++ b/i3-dmenu-desktop @@ -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;