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)