From 13cce0e4e8f0c29705ad0129706797fe44e4dd51 Mon Sep 17 00:00:00 2001 From: Craig Jennings Date: Tue, 27 Jan 2026 08:03:40 -0600 Subject: fix(screenshot): use ISO 8601 date format in filenames Changed from 2026.01.27-HHMMSS to 2026-01-27_HHMMSS for standard date formatting and clean date/time separation. --- dotfiles/hyprland/.local/bin/screenshot | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'dotfiles/hyprland/.local/bin/screenshot') diff --git a/dotfiles/hyprland/.local/bin/screenshot b/dotfiles/hyprland/.local/bin/screenshot index c5803c8..45925c6 100755 --- a/dotfiles/hyprland/.local/bin/screenshot +++ b/dotfiles/hyprland/.local/bin/screenshot @@ -4,7 +4,7 @@ DIR="$HOME/pictures/screenshots" mkdir -p "$DIR" -FILE="$DIR/$(date +%Y.%m.%d-%H%M%S).png" +FILE="$DIR/$(date +%Y-%m-%d_%H%M%S).png" # Capture case "${1:-region}" in -- cgit v1.2.3