diff options
| author | Craig Jennings <c@cjennings.net> | 2026-01-27 08:03:40 -0600 |
|---|---|---|
| committer | Craig Jennings <c@cjennings.net> | 2026-01-27 08:03:40 -0600 |
| commit | f4fff7083fb98e7636f106d1d83db62b0f4842f8 (patch) | |
| tree | 690d6f1cffc2bb3be9a7b3ea9488c7863bc4bebf | |
| parent | 749f14970473efc8d3728a019b67a9f418c98141 (diff) | |
| download | archsetup-f4fff7083fb98e7636f106d1d83db62b0f4842f8.tar.gz archsetup-f4fff7083fb98e7636f106d1d83db62b0f4842f8.zip | |
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.
| -rwxr-xr-x | dotfiles/hyprland/.local/bin/screenshot | 2 |
1 files changed, 1 insertions, 1 deletions
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 |
