“幾鍵式”開啟或關閉Mac OS的網際網路共用

來源:互聯網
上載者:User


Macbook提供了非常簡單易用的Internet共用功能,可以做為一個輕量級的家庭無線路由使用。只要你的mbp能夠上網,那麼你的手機、touch和pad的裝置就都可以通過wifi共用mbp的網路,實現無線上網。
具體設定非常簡單,系統喜好設定->共用->Inernet共用->啟動幾個步驟,但是每次點這麼幾下,還是很麻煩,我們通過Apple Script和QS這個神器可以讓簡單的操作更簡單。

開啟AppleScript編輯器,鍵入如下代碼(供參考):

以下代碼請根據縮排。

tell application “System Preferences”
activate
end tell

tell application “System Events”
tell process “System Preferences”
click menu item “共用” of menu “顯示” of menu bar 1
delay 2
tell window “共用”
click checkbox 1 of row 11 of table 1 of scroll area 1 of group 1
delay 1
if (exists sheet 1) then
if (exists button “開啟 AirPort” of sheet 1) then
click button “開啟 AirPort” of sheet 1
delay 1
end if
click button “啟動” of sheet 1
else
do shell script “/usr/sbin/networksetup -setairportpower en1 off”
delay 1
end if
end tell
end tell
end tell

ignoring application responses
tell application “System Preferences” to quit
end ignoring

檔案->儲存,儲存為指令檔,例如ws.scpt,然後運行,效果看到了吧。
之後呼出QS,如果你是mac使用者而不知道QS,那麼就用Google百度一下。在QS中通過路徑方式找到ws.scpt,運行之。運行一次之後就可以直接通過鍵盤操作了。呼出QS,鍵入ws,應該就可以找到ws.scpt,然後敲斷行符號鍵,搞定。

好了,這下呼出QS,鍵入ws和斷行符號,就能自動開啟或關閉Internet共用了。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.