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

This reverts commit 03cbbd2f7f.
This commit is contained in:
David Heinemeier Hansson
2025-11-16 20:57:07 +01:00
committed by GitHub
parent 279259d547
commit cac2b5728f
2 changed files with 3 additions and 26 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
*Clipboard*) omarchy-cmd-share clipboard ;;
case $(menu "Share" " Clipboard\n File \n Folder") in
*Clipboard*) terminal bash -c "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
}