<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>macos &#8211; 超哥工作室</title>
	<atom:link href="https://www.chaoneo.cn/tags/macos/feed" rel="self" type="application/rss+xml" />
	<link>https://www.chaoneo.cn</link>
	<description>CHAONEO.CN</description>
	<lastBuildDate>Sat, 16 Aug 2025 13:49:36 +0000</lastBuildDate>
	<language>zh-CN</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.5.3</generator>

<image>
	<url>https://img2.ladyww.cn/chaoneo/2022/09/20220921204437747.png</url>
	<title>macos &#8211; 超哥工作室</title>
	<link>https://www.chaoneo.cn</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Windows和macOS快捷键同步的解决方法</title>
		<link>https://www.chaoneo.cn/archives/3827.html</link>
					<comments>https://www.chaoneo.cn/archives/3827.html#respond</comments>
		
		<dc:creator><![CDATA[超哥]]></dc:creator>
		<pubDate>Sat, 16 Aug 2025 13:49:36 +0000</pubDate>
				<category><![CDATA[分享]]></category>
		<category><![CDATA[macos]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[快捷键]]></category>
		<guid isPermaLink="false">https://www.chaoneo.cn/?p=3827</guid>

					<description><![CDATA[大家都知道Windows和macOS环境下的快捷键是同理，但是不同的按键，有的人会在远程控制上使用映射来解决，因为超哥用的rustdesk自建的远程，现在的主力是macbook，但...]]></description>
										<content:encoded><![CDATA[<p>大家都知道Windows和macOS环境下的快捷键是同理，但是不同的按键，有的人会在远程控制上使用映射来解决，因为超哥用的rustdesk自建的远程，现在的主力是macbook，但是也有30%的时候需要使用Windows下的软件。这个时候就会再复制粘贴上使用起来不停的切换。说实话，如果是少量的使用是没问题的，但是使用的多的话，特别的麻烦，今天超哥为大家分享出解决方法。</p>
<p><img decoding="async" src="https://img2.ladyww.cn/alist/20250816214907860.png" /></p>
<h3>macOS快捷键修改</h3>
<div class="auto-hide-last-sibling-br paragraph-JOTKXA paragraph-element br-paragraph-space">Windows 系统中复制粘贴的快捷键分别是 Ctrl+C 和 Ctrl+V，而 MacBook 系统中则是 Command+C 和 Command+V。要使 MacBook 的复制粘贴快捷键与 Windows 一样，可通过修改键盘修饰键映射来实现，具体步骤如下：</div>
<p>&nbsp;</p>
<ol class="auto-hide-last-sibling-br">
<li>打开 “系统设置”，选择 “键盘”。</li>
<li>点击 “键盘快捷键”，然后选择 “修饰键&#8230;”。</li>
<li>在顶部下拉菜单中选择你使用的键盘。</li>
<li>将 “Control (^) 键” 改为 “Command (⌘)”，将 “Command (⌘) 键” 改为 “Control (^)”。</li>
<li>点击 “好” 保存设置。</li>
</ol>
<div class="auto-hide-last-sibling-br paragraph-JOTKXA paragraph-element br-paragraph-space">完成上述设置后，MacBook 上的复制粘贴快捷键就会变为 Ctrl+C 和 Ctrl+V，与 Windows 系统一致。</div>
<div></div>
<h3>Windows快捷键修改</h3>
<div>
<div class="auto-hide-last-sibling-br paragraph-JOTKXA paragraph-element br-paragraph-space">可以将 Windows 的复制粘贴快捷键设置为和 MacBook 一样，即 Command+C 和 Command+V，不过需要借助第三方软件来实现。以下是使用 AutoHotkey 软件进行设置的步骤：</div>
<p>&nbsp;</p>
<ol class="auto-hide-last-sibling-br">
<li>下载 AutoHotkey，下载地址为：<a class="link-ZNPgAX" href="https://www.autohotkey.com/" target="_blank" rel="noopener">https://www.autohotkey.com/</a>。</li>
<li>安装好 AutoHotkey 后，退出安装程序。</li>
<li>在桌面右键，新建一个 AutoHotKey Script，桌面上会出现一个名为 “新建 AutoHotKey Script.ahk” 的文件。</li>
<li>右键该文件，选择 “Edit script”，将文件中默认内容删除，然后粘贴以下内容：</li>
</ol>
<div class="hcb_wrap">
<pre class="prism line-numbers lang-plain" data-lang="Plain Text"><code>; Windows模拟Mac风格快捷键配置
; 使用Win键(⊞)替代Mac的Command键(⌘)

; 复制 (Mac: Command+C → Windows: Win+C)
LWin &amp; c::Send, ^c

; 粘贴 (Mac: Command+V → Windows: Win+V)
LWin &amp; v::Send, ^v

; 剪切 (Mac: Command+X → Windows: Win+X)
LWin &amp; x::Send, ^x

; 撤销 (Mac: Command+Z → Windows: Win+Z)
LWin &amp; z::Send, ^z

; 全选 (Mac: Command+A → Windows: Win+A)
LWin &amp; a::Send, ^a

; 保存 (Mac: Command+S → Windows: Win+S)
LWin &amp; s::Send, ^s

; 查找 (Mac: Command+F → Windows: Win+F)
LWin &amp; f::Send, ^f

; 关闭窗口 (Mac: Command+W → Windows: Win+W)
LWin &amp; w::Send, ^w

; 新建 (Mac: Command+N → Windows: Win+N)
LWin &amp; n::Send, ^n

; 打印 (Mac: Command+P → Windows: Win+P)
LWin &amp; p::Send, ^p

; 切换应用程序 (类似Mac的Command+Tab)
LWin &amp; Tab::Send, !{Tab}

; 注：LWin代表左Win键，&amp;用于组合键，^代表Ctrl键，+代表Shift键
    </code></pre>
</div>
<ol start="5" class="auto-hide-last-sibling-br">
<li>保存文件。</li>
<li>右键文件，选择 “Run script”。</li>
</ol>
<p>&nbsp;</p>
<div class="auto-hide-last-sibling-br paragraph-JOTKXA paragraph-element br-paragraph-space">完成以上操作后，Windows 系统中按下 Win 键 + C 就会执行复制操作，按下 Win 键 + V 就会执行粘贴操作，实现了与 MacBook 类似的快捷键设置。</div>
</div>
<div></div>
<h3>使用总结</h3>
<div>这里超哥使用第二种办法，要知道macOS的快捷键相对间距很近，按习惯之后，也就返回不去了。大家可以根据自己的情况来调整。</div>
]]></content:encoded>
					
					<wfw:commentRss>https://www.chaoneo.cn/archives/3827.html/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>微信4.0 macOS最新多开方法</title>
		<link>https://www.chaoneo.cn/archives/3825.html</link>
					<comments>https://www.chaoneo.cn/archives/3825.html#respond</comments>
		
		<dc:creator><![CDATA[超哥]]></dc:creator>
		<pubDate>Tue, 12 Aug 2025 03:34:36 +0000</pubDate>
				<category><![CDATA[分享]]></category>
		<category><![CDATA[macos]]></category>
		<category><![CDATA[微信分身]]></category>
		<category><![CDATA[微信多开]]></category>
		<guid isPermaLink="false">https://www.chaoneo.cn/?p=3825</guid>

					<description><![CDATA[之前在微信3.8的版本，有github上有个博主分享的方案，现在发现微信4.0更新，大家也都更新到最新的方法，超哥实测成功，特别记录一下，给需要的朋友做个借鉴和记录。 微信最新下载...]]></description>
										<content:encoded><![CDATA[<p>之前在微信3.8的版本，有github上有个博主分享的方案，现在发现微信4.0更新，大家也都更新到最新的方法，超哥实测成功，特别记录一下，给需要的朋友做个借鉴和记录。</p>
<p><img decoding="async" src="https://img2.ladyww.cn/alist/20250812113126408.png" /></p>
<p>微信最新下载地址：<a href="https://mac.weixin.qq.com/?t=mac&amp;lang=zh_CN" target="_blank" rel="noopener">https://mac.weixin.qq.com/?t=mac&amp;lang=zh_CN</a></p>
<div class="hcb_wrap">
<pre class="prism line-numbers lang-plain" data-lang="Plain Text"><code>微信最新多开步骤：

</code><span>第一步：sudo cp -R /Applications/WeChat.app /Applications/WeChat2.app</span> 

<span>第二步：sudo /usr/libexec/PlistBuddy -c "Set :CFBundleIdentifier com.tencent.xinWeChat2" /Applications/WeChat2.app/Contents/Info.plist</span> 

<span>第三步：sudo codesign --force --deep --sign - /Applications/WeChat2.app</span> 

<span>第四步：nohup /Applications/WeChat2.app/Contents/MacOS/WeChat &gt;/dev/null 2&gt;&amp;1 &amp;</span></pre>
</div>
<p>在终端里输入这四个步骤基本上就实现开了二个微信的效果，但是这里大家需要注意，必须固定第二个微信，也就是wechat2这个程序到程序坞。在程序坞上，找到第二个微信，右键&#8211;选项&#8211;在程序坞中保留，这样以后就可以不用命令来打开第二个微信，直接从程序坞点一下就把第二个微信打开了。</p>
<p>这个方法和之前的方法有所区别，就是不需要在应用里显示微信2，每次只要在程序坞上点图标就可以打开wechat2。另外还有个亮点就是，只要替换命令行里的wechat2.app，为wechat3.app，wechat4.app，就可以实现微信多开的效果，配合上微信4.0的版本。使用体验还是非常好的。</p>
<p>这样操作好处就是不依赖任何软件，和Windows上多开的逻辑差不多，缺点是偶尔通信通知会冲突，但是其他的功能都不影响使用。总而言之，还是利大于弊。需要的小伙伴们，抓紧使用起来。</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.chaoneo.cn/archives/3825.html/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Macbook Windows 鼠标键盘共享解决方案</title>
		<link>https://www.chaoneo.cn/archives/3760.html</link>
					<comments>https://www.chaoneo.cn/archives/3760.html#respond</comments>
		
		<dc:creator><![CDATA[超哥]]></dc:creator>
		<pubDate>Wed, 18 Dec 2024 06:19:26 +0000</pubDate>
				<category><![CDATA[分享]]></category>
		<category><![CDATA[macos]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[键盘共享]]></category>
		<category><![CDATA[鼠标共享]]></category>
		<guid isPermaLink="false">https://www.chaoneo.cn/?p=3760</guid>

					<description><![CDATA[之前在 Windows 平台互相键盘鼠标共享是用的Mouse without borders，基本上就满足所有系统之间的切换，现在系统生态发生变化，基本上工作用 macbook 和...]]></description>
										<content:encoded><![CDATA[<p>之前在 Windows 平台互相键盘鼠标共享是用的<span>Mouse without borders，基本上就满足所有系统之间的切换，现在系统生态发生变化，基本上工作用 macbook 和 ipad 的，但是有时回家还要和 Windows 系统保持快捷联系。所以这几天就在解决这个方案。</span></p>
<p>这次使用的工具就是<span>Synergy，有意思是我用的是罗技的键盘，在复制和黏贴上，Windows 和 macOS 之间不冲突的切换使用。</span></p>
<p><img decoding="async" src="http://img2.ladyww.cn/app/202412181418925.jpg" /></p>
<p>基本上用m1pro 的系统为大脑，控制其他的 ipad 或者 win系统，速度和快捷显而易见，不过这里值得记录的就是，macOS 在 wifi 下会和 Windows 网线连接的 IP 地址有所冲突，这里超哥选择给笔记本匹配 c 口的网线，先不说是不是最佳的解决方案，刚才测试网速就有了质的提升。而且还支持三个 usb3.0 的接口，比之前的解决方案🐂🍺了很多。</p>
<p>刚才测试了跨平台下的鼠标反应，简直就是秒控。但是有一个缺点，就是macOS 和 Windows 下的复制黏贴要对应的快捷键才可以。其他的基本无差别感。</p>
<p>另外也有网友评论，说<span>Synergy不能复制文件，这个倒是无关紧要，如果您的大文件，肯定走网盘无论说备份还是转移都说最佳方案。小文件的话就忽略。不过如果您真有需求，可以去寻一下局域网之间的跨平台文件传输工具，这样更专业。</span></p>
<p>需要的小伙伴可以直接下载网友编辑好的文件。</p>
<p>网友分享的下载地址：</p>
<p><span data-v-2505e99a="">https://wwp.lanzoub.com/b02dremyd</span><span data-v-2505e99a=""> </span><span data-v-2505e99a="">密码：5auq</span></p>
<p>软件开源地址：</p>
<p>https://github.com/FLZeng/synergy-core/releases</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.chaoneo.cn/archives/3760.html/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>macOS Sequoia 升级到 15.0 版本</title>
		<link>https://www.chaoneo.cn/archives/3748.html</link>
					<comments>https://www.chaoneo.cn/archives/3748.html#respond</comments>
		
		<dc:creator><![CDATA[超哥]]></dc:creator>
		<pubDate>Thu, 03 Oct 2024 09:45:30 +0000</pubDate>
				<category><![CDATA[分享]]></category>
		<category><![CDATA[macos]]></category>
		<category><![CDATA[Sequoia]]></category>
		<category><![CDATA[系统升级]]></category>
		<guid isPermaLink="false">https://www.chaoneo.cn/?p=3748</guid>

					<description><![CDATA[今天收到系统提醒半强制的将macOS Sequoia 升级到 15.0 版本，做个记录和整理，看看有哪些变化？ 很多同学都不知道该不该升级系统，这一次呢，我们做一个整理和分享，但是...]]></description>
										<content:encoded><![CDATA[<p>今天收到系统提醒半强制的将macOS Sequoia 升级到 15.0 版本，做个记录和整理，看看有哪些变化？</p>
<p>很多同学都不知道该不该升级系统，这一次呢，我们做一个整理和分享，但是要知道不同的系统，它的兼容性也是有一些问题的，既然苹果的官方能推送我们开始提交升级系统，那就说明一定程度上是测试过的，至少没有那么多的bug，但是呢，每个人的机器型号是不同在之前建议备份一下重要的文件，这还是有必要的。</p>
<p><img decoding="async" src="http://img2.ladyww.cn/app/202410031744367.png" /></p>
<h2 class="article-title">macOS Sequoia 15.0有哪些亮点</h2>
<h3><span>iPhone 镜像</span></h3>
<ul class="wp-block-list">
<li>通过 Mac，你可以完全控制和操作 iPhone，即使 iPhone 不在身边也没问题。</li>
<li>通过无线连接，你可以在 Mac 上像平常操作 iPhone 一样使用应用程序，并且能够使用 Mac 的键盘、触控板和鼠标进行控制。</li>
<li>隐私保护方面，即使 iPhone 处于锁屏状态，Mac 仍然可以远程控制。</li>
<li>macOS Sequoia 还可以将 iPhone 的通知同步到 Mac，方便你及时查看和回复。</li>
</ul>
<h3 class="wp-block-heading" id="h-2-窗口布局功能优化">窗口布局功能优化</h3>
<ul class="wp-block-list">
<li>通过<span> </span>macOS Sequoia 窗口布局功能，当你将窗口拖到屏幕边缘时，系统会自动显示窗口排列的建议，比如窗口并排或角落布局。此功能大大提高了多任务处理的效率，帮助你更加轻松地管理工作空间。</li>
<li>之前我们都是通过应用 Magnet 来实现的。看样子可以抛弃这个工具。</li>
</ul>
<h3 class="wp-block-heading" id="h-3-视频会议主持人预览功能">视频会议主持人预览功能</h3>
<ul class="wp-block-list">
<li>在分享屏幕前，你可以预先查看要展示的内容，确保演示无误。</li>
<li>此外，用户可以选择不同的背景，包括颜色渐变、系统默认壁纸或自定义上传的图片，提升视频会议的个性化体验。</li>
<li>这个功能我们在抖音的直播上也看过类似的效果，就是你在看对方的短视频的同时可以预览到他的直播内容。</li>
</ul>
<p>另外，还有一些其他的新功能，例如密码盒的全新发布，还有一些针对于游戏上的性能的优化，具体其他的功能呢，就靠大家去检索发觉吧，总的来说，我在这一次上去过程中没有遇见什么bug，基本上属于于平滑的完美升级，没有影响到数据，也没有影响到软件的使用。所以说每个人的需求是不同的，大家要根据自己的系统版本和应届的条件去考量。</p>
<p>最后发现大家分享出你的升级体，有什么bug还是一些疑难的问题，欢迎在评论区里留言交流。</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.chaoneo.cn/archives/3748.html/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>mac 必备的几个小软件</title>
		<link>https://www.chaoneo.cn/archives/3741.html</link>
					<comments>https://www.chaoneo.cn/archives/3741.html#respond</comments>
		
		<dc:creator><![CDATA[超哥]]></dc:creator>
		<pubDate>Wed, 04 Sep 2024 23:20:26 +0000</pubDate>
				<category><![CDATA[心得]]></category>
		<category><![CDATA[MacBook]]></category>
		<category><![CDATA[macos]]></category>
		<guid isPermaLink="false">https://www.chaoneo.cn/?p=3741</guid>

					<description><![CDATA[鸟枪换炮，M1芯片 macbook pro 到手，这几天测试和应用后，可以大概的整理一些软件，无论你是新机器安装，还是 Windows 系统平滑过度导 macos，都是必备的东东。...]]></description>
										<content:encoded><![CDATA[<p><a href="https://www.chaoneo.cn/archives/3737.html" target="_blank" rel="bookmark noopener">鸟枪换炮，M1芯片 macbook pro 到手</a>，这几天测试和应用后，可以大概的整理一些软件，无论你是新机器安装，还是 Windows 系统平滑过度导 macos，都是必备的东东。超哥也会备注推荐的理由。</p>
<p>截图软件一般在 qq，wps 上也都有，这里为什么要独立选择呢，有一些截图到简单的编辑还是有必要的，Windows 系统上没有截图软件能超越 Sharex。 这里我们测试的 snipaste，已经足够使用。</p>
<p><img decoding="async" src="http://img2.ladyww.cn/app/Pasted.png" /></p>
<p>我为什么能从Windows 系统平滑过度到 mac 系统，最主要的就是有这款全局鼠标手势软件，他的高度和定制，基本上将您平时所需的功能，花一点点的时间，直接就过渡过来，和之前的 Windows 平台没什么区别。当然，这里也不得不提一句，如果您的 Windows 系统的话，mouseinc 鼠标手势也是不二的选择。</p>
<p><img decoding="async" src="http://img2.ladyww.cn/app/20240905071104.png" /></p>
<p>划词翻译也是必备的存在，但是这里超哥没有选择一些很完美的开源软件，其实并不是翻译的接口越多，你的软件就越好的。主流的解决方案也就那么几种，Windows 上我们使用的是有道截图翻译，在测试几轮软件之后，还是觉得这款软件简单专注一些。</p>
<p><img decoding="async" src="http://img2.ladyww.cn/app/20240905071531.png" /></p>
<p>因为我们平时维护网站和一些推广的任务比较多，第三方的云存储一直都是用 picgo 的。在 Windows 和 mac 上都一直保持使用习惯。另外如果您是娱乐化一些，看个电视的话，推荐aptv，订阅也不贵，配合抖音的 mac 版，影音娱乐基本上能满足，还有 iina 播放器，也推荐安装。</p>
<p>至于设计界的硬件软件这里就不多说了，很多的解决方案，无论您是直接购买还是免费使用，网上的资源都能满足到您。</p>
<p>好了，今天就分享到这里，后期有什么 mac 平台上都惊喜，继续记录和分享给大家！😀</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.chaoneo.cn/archives/3741.html/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
