Files
omarchy/bin/omarchy-dev-add-migration
2025-07-21 18:45:31 -04:00

8 lines
223 B
Bash
Executable File

#!/bin/bash
cd ~/.local/share/omarchy
migration_file="$HOME/.local/share/omarchy/migrations/$(git log -1 --format=%cd --date=unix).sh"
touch $migration_file
nvim $migration_file
echo -e "Run with:\nsource $migration_file"