From 0f6da08ad88730ce3eb3d6cfcc40e56cd375ec2b Mon Sep 17 00:00:00 2001 From: Gabriel Fontes Date: Tue, 25 Jun 2024 10:30:50 -0300 Subject: [PATCH] feat(home/waypipe): add title prefix --- home/gabriel/features/desktop/common/wayland-wm/waypipe.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/home/gabriel/features/desktop/common/wayland-wm/waypipe.nix b/home/gabriel/features/desktop/common/wayland-wm/waypipe.nix index ceca9696..0a7fa6b3 100644 --- a/home/gabriel/features/desktop/common/wayland-wm/waypipe.nix +++ b/home/gabriel/features/desktop/common/wayland-wm/waypipe.nix @@ -15,7 +15,7 @@ Service = { Type = "simple"; ExecStartPre = "${lib.getExe' pkgs.coreutils "mkdir"} %h/.waypipe -p"; - ExecStart = "${lib.getExe pkgs.waypipe} --socket %h/.waypipe/server.sock --login-shell --display %h/.waypipe/display server -- ${lib.getExe' pkgs.coreutils "sleep"} infinity"; + ExecStart = "${lib.getExe pkgs.waypipe} --socket %h/.waypipe/server.sock --title-prefix '[%H] ' --login-shell --display %h/.waypipe/display server -- ${lib.getExe' pkgs.coreutils "sleep"} infinity"; ExecStopPost = "${lib.getExe' pkgs.coreutils "rm"} -f %h/.waypipe/server.sock %h/.waypipe/display"; }; Install.WantedBy = ["default.target"];