From 42bdf374dd4eb074f5308d76e567c9a0e2c84caf Mon Sep 17 00:00:00 2001 From: Ryan Hughes Date: Sat, 6 Jun 2026 02:49:40 -0400 Subject: [PATCH] Use Omarchy log upload endpoint --- bin/omarchy-debug | 4 ++-- bin/omarchy-upload-log | 12 ++++++------ 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/bin/omarchy-debug b/bin/omarchy-debug index 830caa1b..7868acf5 100755 --- a/bin/omarchy-debug +++ b/bin/omarchy-debug @@ -74,8 +74,8 @@ ACTION=$(gum choose "${OPTIONS[@]}") case "$ACTION" in "Upload log") - echo "Uploading debug log to 0x0.st..." - URL=$(curl -sF "file=@$LOG_FILE" -Fexpires=24 https://0x0.st) + echo "Uploading debug log to logs.omarchy.org..." + URL=$(curl -sF "file=@$LOG_FILE" -Fexpires=24 https://logs.omarchy.org) if (( $? == 0 )) && [[ -n $URL ]]; then echo "✓ Log uploaded successfully!" echo "Share this URL:" diff --git a/bin/omarchy-upload-log b/bin/omarchy-upload-log index 7d06ac3b..7cf81ed3 100755 --- a/bin/omarchy-upload-log +++ b/bin/omarchy-upload-log @@ -1,6 +1,6 @@ #!/bin/bash -# omarchy:summary=Upload logs to 0x0.st +# omarchy:summary=Upload logs to logs.omarchy.org # omarchy:args= # omarchy:hidden=true @@ -53,7 +53,7 @@ install) exit 1 fi - echo "Uploading installation log to 0x0.st..." + echo "Uploading installation log to logs.omarchy.org..." ;; this-boot) @@ -66,7 +66,7 @@ this-boot) exit 1 fi - echo "Uploading current boot logs to 0x0.st..." + echo "Uploading current boot logs to logs.omarchy.org..." ;; last-boot) @@ -79,7 +79,7 @@ last-boot) exit 1 fi - echo "Uploading previous boot logs to 0x0.st..." + echo "Uploading previous boot logs to logs.omarchy.org..." ;; installed|system-info) @@ -98,7 +98,7 @@ installed|system-info) exit 1 fi - echo "Uploading system information to 0x0.st..." + echo "Uploading system information to logs.omarchy.org..." ;; *) @@ -113,7 +113,7 @@ esac echo "" -URL=$(curl -sF "file=@$TEMP_LOG" -Fexpires=24 https://0x0.st) +URL=$(curl -sF "file=@$TEMP_LOG" -Fexpires=24 https://logs.omarchy.org) if (( $? == 0 )) && [[ -n $URL ]]; then echo "✓ Log uploaded successfully!"