mirror of
https://github.com/basecamp/omarchy.git
synced 2025-07-27 20:29:24 +00:00
7 lines
197 B
Bash
Executable File
7 lines
197 B
Bash
Executable File
#!/bin/bash
|
|
|
|
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"
|