Files
omarchy/bin/omarchy-dev-add-migration

7 lines
193 B
Plaintext
Raw Normal View History

2025-07-09 10:14:48 -07:00
#!/bin/bash
2025-07-09 10:29:49 -07:00
migration_file="~/.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"