14
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

初心者が開発でハマったらMacが「質問しろ」というアプリ作った

Last updated at Posted at 2018-12-10

エキサイト Advent Calendar 2018 10日目の記事です。

はじめまして、新入社員のaharenchiです。初投稿です。
今回は、

「わからないよ」とつぶやいて時間が経過したらMacが「質問しろ」とアドバイスしてくれるアプリ

を作りました。

はじめに

作業に集中していると分からないことにハマってしまうときがありますよね?私はよくあります。

私「わからない」
私「質問したら解決できそうだけど、自分の力で頑張ってみたい...!!」

1時間後

私「ぜんぜんわからないめう...:sob:

30分悩んだ時点で質問すべきです。
そこで、

「わからないよ」とつぶやいて時間が経過したらMacが「質問しろ」とアドバイスしてくれるアプリ

を作ってみました。macOSで動きます。

[デモ1] (https://youtu.be/3nALVjvsGNM)
Macの音声入力でアプリを起動して30分後にダイアログが表示される様子

[デモ2] (https://youtu.be/7E8frl_G94M)
Macの音声入力でアプリの起動と終了を行っている様子

作り方

Macの音声入力コマンドとAppleScriptで作りました。

アラームアプリケーションの作成

(1) スクリプトエディタを起動して、File > New を選択します。
(2) AppleScriptを選択し、下記のコードを書きます。

set delayTime to 60 * 30
set timeStar to current date
repeat
	delay delayTime
	set timeLap to current date
	display dialog "あなたが悩んで" & ((timeLap - timeStar) / 60) div 1 & "分が経過しました。質問してみませんか?" buttons {"質問する", "自力で頑張る"} default button 1
	if the button returned of the result is "質問する" then
		exit repeat
		return
	end if
end repeat

(3) File > Exportを選択し、File FormatポップアップメニューをクリックしてApplicationを選択しスクリプトをアプリケーションとして保存します。

Macの音声入力操作を設定

(1) System Preferences > Keyboard > Dictationを選択し、DictationをOnにします。

Screen Shot 2018-12-09 at 2.34.32.png

(2) System Preferences > Accessibility > Dictationを選択し、「まっく」とキーフレーズを入力します。

Screen Shot 2018-12-09 at 2.34.19.png

(3) Dictation Commandsを選択し、アラームアプリ起動コマンドと終了コマンドを設定します。

アラームアプリ起動コマンド

Screen Shot 2018-12-09 at 2.37.11.png

「わからないよ」と話しかけると、Open "worryTime.app"でアラームアプリを起動するように設定します。

アラームアプリ終了コマンド

Screen Shot 2018-12-09 at 2.37.44.png

「わかった」と話しかけると、アプリ強制終了(command + option + shift + esc)でアラームアプリを終了します。
通常のアプリ終了(command + q)よりもAppleScriptのrepeatが優先されるので、強制終了でアプリを終了させています。

感想

さっそく今日から使ってみようと思っていたのですが、開発で支給されているiMacのマイクが自分と離れているので、つぶやくレベルではなく大声で話しかける必要が..。:scream:
周りの席の方に、突然大声でMacに「わからないよ!」と話しかけるやばい新卒と心配されそうなので、音声入力の方法が改良するまではやめておこうと思います。
次回のバージョンアップを楽しみになさってください。:pray:

MacBookでしたら比較的つぶやく程度で使うことができるので、ご興味のある方は使って見てください!

次のエキサイトAdvent Calendarもよろしくお願いします!

参考文献

14
2
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
14
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?