<?xml version="1.0" encoding="utf-8"?> 
<rss version="2.0"
  xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd"
  xmlns:atom="http://www.w3.org/2005/Atom">

<channel>

<title>Photoindra: posts tagged switching</title>
<link>https://mail.photoindra.com/tags/switching/</link>
<description>My telegram</description>
<author></author>
<language>en</language>
<generator>Aegea 11.3 (v4134)</generator>

<itunes:subtitle>My telegram</itunes:subtitle>
<itunes:image href="" />
<itunes:explicit></itunes:explicit>

<item>
<title>Making Mac keyboard work on Windows 10</title>
<guid isPermaLink="false">249</guid>
<link>https://mail.photoindra.com/all/making-mac-keyboard-work-on-windows-10/</link>
<pubDate>Sat, 18 Jan 2020 07:31:39 -0500</pubDate>
<author></author>
<comments>https://mail.photoindra.com/all/making-mac-keyboard-work-on-windows-10/</comments>
<description>
&lt;p&gt;After more than 10 years on Mac computers Iâ€™m switching toÂ Windows. AndÂ theÂ most challenging thing toÂ my surprise was notÂ theÂ lack ofÂ some apps butÂ default windows keyboard layout.&lt;/p&gt;
&lt;p&gt;It took me aÂ while toÂ figure out how toÂ make my Magic Keyboard toÂ work on windows theÂ same way asÂ on mac.&lt;/p&gt;
&lt;p&gt;Fist you need toÂ swap WIN key with CTRL inÂ app called SharpKeys:&lt;/p&gt;
&lt;div class="e2-text-picture"&gt;
&lt;img src="https://mail.photoindra.com/pictures/sharpkeys_screenshot@2x.jpg" width="462" height="347" alt="" /&gt;
&lt;/div&gt;
&lt;p&gt;Then you need toÂ install anÂ app AutoHotkey.&lt;br /&gt;
Create aÂ plain text document andÂ call it whatever you want butÂ with extension .ahk&lt;br /&gt;
Place it inÂ your user startup folder (replace _username_ with your name):&lt;br /&gt;
C:\Users\_username_\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup&lt;br /&gt;
Inside this ahk file write this:&lt;/p&gt;
&lt;pre class="e2-text-code"&gt;&lt;code class=""&gt;#NoEnv  ; Recommended for performance and compatibility with future AutoHotkey releases.
; #Warn  ; Enable warnings to assist with detecting common errors.
SendMode Input  ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir%  ; Ensures a consistent starting directory.

LControl &amp;amp; Tab:: 
    AltTabMenu := true
    If GetKeyState(&amp;quot;Shift&amp;quot;,&amp;quot;P&amp;quot;)
        Send {Alt Down}{Shift Down}{Tab}
    else
        Send {Alt Down}{Tab}
return

#If (AltTabMenu)

    ~*LControl Up::
        Send {Shift Up}{Alt Up}
        AltTabMenu := false 
    return

#If&lt;/code&gt;&lt;/pre&gt;</description>
</item>


</channel>
</rss>‹               