<?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>Windows &#8211; 超哥工作室</title>
	<atom:link href="https://www.chaoneo.cn/tags/windows/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>Windows &#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>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>
	</channel>
</rss>
