タグ

関連タグで絞り込む (1)

タグの絞り込みを解除

osascriptとappleに関するrin1024のブックマーク (1)

  • Mac Lion システム起動音を消す方法 - one day one life -tech-

    Macの起動音「ジャーン」を消す方法です。 スクリプト2つとログイン/ログアウトフックを使えばいけるみたいです。 スクリプト作成 # ホームディレクトリにscriptsというディレクトリを作成 ~ $mkdir scripts/ ~ $cd scripts/ ~/scripts $ # OS終了時にミュートにするスクリプトを作成 ~/scripts $cat muteon.sh #!/bin/bash osascript -e 'set volume with output muted' # OS起動時にミュートを解除するスクリプトを作成 ~/scripts $cat muteoff.sh #!/bin/bash osascript -e 'set volume without output muted' # 実行可能ファイルにするためパーミッション変更 ~/scripts $sudo c

    Mac Lion システム起動音を消す方法 - one day one life -tech-
  • 1