Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Raycastを使いこなせ!

浦川仁成
September 30, 2024

 Raycastを使いこなせ!

浦川仁成

September 30, 2024
Tweet

More Decks by 浦川仁成

Other Decks in Technology

Transcript

  1. Command Script 例 「work」コマンドで、ChatGPTやGmailなどを一発で開くスクリプト 例: #!/bin/bash # Required parameters: #

    @raycast.schemaVersion 1 # @raycast.title work # @raycast.mode silent # Optional parameters: # @raycast.icon links=( "https://chatgpt.com/" "https://mail.google.com/mail/u/0/?tab=rm&ogbl#inbox" "https://calendar.google.com/calendar/u/0/r" "https://drive.google.com/drive/u/0/home" ) for link in "${links[@]}" do open "$link" done open -a "Slack" 6
  2. 最後に デフォルトでは ⌥ + space で起動しますが、 ⌘ + space に変更して

    Spotlightの代わりに使うことをおすすめします。 8