diff options
author | stuebinm | 2023-09-06 17:30:07 +0200 |
---|---|---|
committer | stuebinm | 2023-09-06 17:30:07 +0200 |
commit | ac94089a574c627c85448e3c519ce079b7fb50b5 (patch) | |
tree | 8f02978a7b43a4922bad862c56174bd03df66afa | |
parent | a047ef5d3e5580a96628c3ac9d97d5086440bb5e (diff) |
home: signal is weird
(it has to be started twice, otherwise it only starts the background
process & not the window)
-rw-r--r-- | home/unstable.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/home/unstable.nix b/home/unstable.nix index 344c359..a53bc39 100644 --- a/home/unstable.nix +++ b/home/unstable.nix @@ -20,7 +20,7 @@ with import inputs.nixpkgs-unstable {inherit system; }; xdg.desktopEntries."Signal" = { name = "Signal"; exec = - "signal-desktop --enable-features=WaylandWindowDecorations --ozone-platform-hint=auto"; + ''fish -c "signal-desktop --enable-features=WaylandWindowDecorations --ozone-platform-hint=auto & && signal-desktop"''; terminal = false; type = "Application"; icon = "signal-desktop"; |