Revert "improve: add image/video share and run share commands silently" (#3434)

* Revert "improve: add image/video share and run share commands silently (#3330)"

This reverts commit 03cbbd2f7f.

* Refactor share menu to remove terminal command
This commit is contained in:
David Heinemeier Hansson
2025-11-16 14:58:54 -05:00
committed by GitHub
parent 279259d547
commit 4b2ff4f329
2 changed files with 2 additions and 25 deletions

View File

@@ -123,12 +123,10 @@ show_screenrecord_menu() {
}
show_share_menu() {
case $(menu "Share" " Clipboard\n File\n Folder\n Latest Picture\n Latest Video") in
case $(menu "Share" " Clipboard\n File \n Folder") in
*Clipboard*) omarchy-cmd-share clipboard ;;
*File*) terminal bash -c "omarchy-cmd-share file" ;;
*Folder*) terminal bash -c "omarchy-cmd-share folder" ;;
*Picture*) omarchy-cmd-share picture ;;
*Video*) omarchy-cmd-share video ;;
*) back_to show_trigger_menu ;;
esac
}