diff --git a/dots/.config/quickshell/ii/modules/common/utils/ScreenshotAction.qml b/dots/.config/quickshell/ii/modules/common/utils/ScreenshotAction.qml index 831834bd5..c4eae679f 100644 --- a/dots/.config/quickshell/ii/modules/common/utils/ScreenshotAction.qml +++ b/dots/.config/quickshell/ii/modules/common/utils/ScreenshotAction.qml @@ -32,7 +32,7 @@ Singleton { const rw = Math.round(width); const rh = Math.round(height); const cropBase = `magick ${StringUtils.shellSingleQuoteEscape(screenshotPath)} ` - + `-crop ${rw}x${rh}+${rx}+${ry}` + + `-crop ${rw}x${rh}+${rx}+${ry} +repage` const cropToStdout = `${cropBase} -` const cropInPlace = `${cropBase} '${StringUtils.shellSingleQuoteEscape(screenshotPath)}'` const cleanup = `rm '${StringUtils.shellSingleQuoteEscape(screenshotPath)}'`