aboutsummaryrefslogtreecommitdiff
path: root/macos.local/.flake/home/scripts
diff options
context:
space:
mode:
authorjjanzen <jjanzen@jjanzen.ca>2025-03-03 15:25:04 -0600
committerjjanzen <jjanzen@jjanzen.ca>2025-03-03 15:25:04 -0600
commita5b4410383875e6e5ee9f2953c6d79743f0d8604 (patch)
tree99cd879c506058286b5580458ff94529feff6aec /macos.local/.flake/home/scripts
parent27a2332034d58b1358fbb42f3b1e531055763c21 (diff)
system changes
Diffstat (limited to 'macos.local/.flake/home/scripts')
-rw-r--r--macos.local/.flake/home/scripts/manage-system.org6
1 files changed, 6 insertions, 0 deletions
diff --git a/macos.local/.flake/home/scripts/manage-system.org b/macos.local/.flake/home/scripts/manage-system.org
index 4563432..e8da0d9 100644
--- a/macos.local/.flake/home/scripts/manage-system.org
+++ b/macos.local/.flake/home/scripts/manage-system.org
@@ -7,6 +7,7 @@
{
echo "Usage: $0 [command] where command is one of"
echo "help - show this message and exit"
+ echo "backup - push the configuration to the remote"
echo "update - update the system"
echo "install - install the system configurations"
}
@@ -22,6 +23,11 @@
cd "$dir" || exit 1
exit 0
;;
+ backup)
+ git push
+ cd "$dir" || exit 1
+ exit 0
+ ;;
update)
make update
cd "$dir" || exit 1