feat(home/waypipe): add title prefix

This commit is contained in:
Gabriel Fontes
2024-06-25 10:30:50 -03:00
parent 3f896ba4bf
commit 0f6da08ad8
@@ -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"];