From 8327f837a08819b1169f73b3e55e4ffbfeacddf9 Mon Sep 17 00:00:00 2001 From: Michael Stapelberg Date: Sun, 3 Mar 2013 21:27:56 +0100 Subject: [PATCH] i3-dmenu-desktop: remove %i from commandline MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit We don’t currently support the icon argument, but entirely not handling %i leads to e.g. “digikam” not starting. --- i3-dmenu-desktop | 1 + 1 file changed, 1 insertion(+) 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; -- 2.39.5