swayidle: Fix position of extraArgs (#2932)
This commit is contained in:
parent
0304f0f58b
commit
ac722cddf4
|
@ -15,8 +15,8 @@ let
|
|||
|
||||
mkEvent = e: [ e.event (escapeShellArg e.command) ];
|
||||
|
||||
args = (concatMap mkTimeout cfg.timeouts) ++ (concatMap mkEvent cfg.events)
|
||||
++ cfg.extraArgs;
|
||||
args = cfg.extraArgs ++ (concatMap mkTimeout cfg.timeouts)
|
||||
++ (concatMap mkEvent cfg.events);
|
||||
|
||||
in {
|
||||
meta.maintainers = [ maintainers.c0deaddict ];
|
||||
|
|
Loading…
Reference in a new issue