zoukankan      html  css  js  c++  java
  • 关于M1 Mac如何设置打开终端的快捷键

    在启动台中找到自动操作并打开

    选择快速操作

    将“工作流程收到”设置为“没有输入”;然后将左侧的“运行AppleScript”拖到右侧

     在右侧代码处替换如下的代码

    该代码是在桌面打开终端,所处的路径是 ~

    on run {input, parameters}
    	
    	(* Your script goes here *)
    	tell application "Terminal"
    		reopen
    	end tell
    end run

     可以点击运行开是否能执行成功,之后“command+s”保存并命名为open terminal

    提供第二种打开方式,可在任意位置打开终端

    on run {input, parameters}
    	tell application "Finder"
    		set myWin to window 1
    		set thePath to (quoted form of POSIX path of (target of myWin as alias))
    		if application "Terminal" is running then
    			tell application "Terminal"
    				do script "cd " & thePath
    				activate
    			end tell
    		else
    			tell application "Terminal"
    				do script "cd " & thePath in window 1
    				activate
    			end tell
    		end if
    	end tell
    end run

     保存后可命名为open terminal here

    之后打开 系统偏好——>键盘——>快捷键

    在左侧选择服务,右侧通用处找到刚刚命名的两个文件,然后设置喜欢的快捷键即可

     

    2021-06-11  16:33:06

    请尊重作者原创,转载复制请标明出处!!! (免责声明: 该博客中所发表的文章仅用作学习使用,任何人不得用来做违法犯罪活动,出现问题均与本人无关。)
  • 相关阅读:
    Mybatis Generator 生成的mapper只有insert方法
    someone you loved 歌词翻译
    Illegal instant due to time zone offset transition (Asia/Shanghai)_夏令时问题
    React js ReactDOM.render 语句后面不能加分号
    node js 路由
    node -v node is not define
    怎样从gitHub上面拉项目
    工作3年java面试题整理(自用)
    状态模式
    代理模式
  • 原文地址:https://www.cnblogs.com/Yuuki-/p/14875645.html
Copyright © 2011-2022 走看看