From 69b89ae2757030f1111e462faa5e6adad4541294 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ball=C3=B3=20Gy=C3=B6rgy?= Date: Sun, 14 Dec 2025 07:44:46 +0100 Subject: [PATCH] Fix PekWM exec PekWM passes the & (and) character to the process, adding it to the end of the Exec parameter is not needed. --- src/xdgmenumaker | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/xdgmenumaker b/src/xdgmenumaker index a11af78..9d11b2f 100755 --- a/src/xdgmenumaker +++ b/src/xdgmenumaker @@ -736,11 +736,11 @@ def pekwmmenu(): # path does not exist command = 'cd {p} && {c} || {c}'.format(p=path, c=command) if xopts['seticon'] and icon is not None: - print('{d}{s} Entry = "{n}" {{ Icon = "{i}"; Actions = "Exec {c} &" }}' + print('{d}{s} Entry = "{n}" {{ Icon = "{i}"; Actions = "Exec {c}" }}' .format(d=dspacing, s=spacing, n=name, i=icon, c=command)) else: - print('{d}{s} Entry = "{n}" {{ Actions = "Exec {c} &" }}' + print('{d}{s} Entry = "{n}" {{ Actions = "Exec {c}" }}' .format(d=dspacing, s=spacing, n=name, c=command)) print('{d}{s}}}'.format(d=dspacing, s=spacing)) if xopts['submenu']: