-
Notifications
You must be signed in to change notification settings - Fork 2
Home
Importation of the Google Code project usialtgr: USA International (AltGr dead keys) on Windows
Are you tired of tapping the space bar every time you hit the ' key? Compare before and after:
Before = US International | After = AltGr dead keys | Result |
---|---|---|
', space | ' | ' |
shift+', space | shift+' | " |
', e | AltGr+', e | é |
shift+6, a | AltGr+Shift+6, a | â |
etc. | etc. | etc. |
AltGr is simply the right Alt key on your keyboard. As you see, typing quotation marks becomes faster and typing accents (acute, umlaut, etc.) becomes slower. What do you do more often?
Steps to install this keyboard layout:
- If you have installed this keyboard layout before, then first follow the uninstall instructions.
- Download the layout.
- Extract the Zip file. Run the installer (please be patient, it takes a minute to complete).
- Follow these steps to change the keyboard layout to
United States-International (AltGr dead keys)
.
Works on Windows XP, Windows Vista, Windows 7 and Windows 8.
-
Create the directory:
mkdir usialtgr
-
Change to that directory:
cd usialtgr
-
Initialize the Subversion import:
git svn init \ -s \ --no-metadata \ --prefix="svn/" \ http://usialtgr.googlecode.com/svn
-
Set the location of the authors mapping file:
git config svn.authorsfile .git/authors
-
Create the authors mapping file:
cat > .git/authors << EOF [email protected] = Matt Miermans <[email protected]> m.miermans = Matt Miermans <[email protected]> (no author) = Matt Miermans <[email protected]> EOF
-
Import the Subversion commits:
git svn fetch
-
Rename the master branch:
git branch -m usialtgr
-
Filter the branch to convert the keyboard layout file from UTF-16LE to UTF-8:
git filter-branch --tree-filter ' iconv -f utf-16 -t utf-8 "United States-International (AltGr dead keys).klc" > kbdusiag.klc mv kbdusiag.klc "United States-International (AltGr dead keys).klc" '
-
Create the directory:
mkdir usialtgr.wiki
-
Change to that directory:
cd usialtgr.wiki/
-
Initialize the Subversion import:
git svn init \ --trunk="wiki" \ --no-metadata \ --prefix="svn/" \ http://usialtgr.googlecode.com/svn
-
Set the location of the authors mapping file:
git config svn.authorsfile .git/authors
-
Create the authors mapping file:
cat > .git/authors << EOF [email protected] = Matt Miermans <[email protected]> m.miermans = Matt Miermans <[email protected]> (no author) = Matt Miermans <[email protected]> EOF
-
Import the Subversion commits:
git svn fetch