From b140a48ec78d20c61667e38d539e03a86792a290 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Thu, 2 Apr 2026 16:07:17 +0200 Subject: [PATCH] Actually create the output dir! Closes #5189 --- bin/omarchy-cmd-screenshot | 1 + 1 file changed, 1 insertion(+) diff --git a/bin/omarchy-cmd-screenshot b/bin/omarchy-cmd-screenshot index f821c919..9036c995 100755 --- a/bin/omarchy-cmd-screenshot +++ b/bin/omarchy-cmd-screenshot @@ -8,6 +8,7 @@ OUTPUT_DIR="${OMARCHY_SCREENSHOT_DIR:-${XDG_PICTURES_DIR:-$HOME/Pictures}}" if [[ ! -d $OUTPUT_DIR ]]; then + mkdir -p "$OUTPUT_DIR" notify-send "Created screenshot directory: $OUTPUT_DIR" -u normal -t 2000 fi