From 8310678bbf89cfb83c6bebe10aa0310a3ff46cca Mon Sep 17 00:00:00 2001 From: 2mal3 <56305732+2mal3@users.noreply.github.com> Date: Tue, 21 Oct 2025 22:51:07 +0200 Subject: [PATCH] fix(display): screenshot delay on fedora --- display/pkg/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/display/pkg/main.go b/display/pkg/main.go index 72be77d..6899818 100644 --- a/display/pkg/main.go +++ b/display/pkg/main.go @@ -81,7 +81,7 @@ func TakeScreenshot() (string, error) { cmds := []*exec.Cmd{ exec.Command("gnome-screenshot", "-f", tempFilePath), exec.Command("xfce4-screenshooter", "-f", "-s", tempFilePath), - exec.Command("spectacle", "--fullscreen", "--background", "--output", tempFilePath), + exec.Command("spectacle", "--fullscreen", "--nonotify", "--background", "--output", tempFilePath), } for _, cmd := range cmds { commandOutput := RunShellCommand(cmd)