-
-
Notifications
You must be signed in to change notification settings - Fork 40.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5 from jackhumbert/master
Sync with upstream
- Loading branch information
Showing
114 changed files
with
12,942 additions
and
3,408 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,71 @@ | ||
@echo off | ||
setx /M path "%PATH%;C:\MinGW\bin;C:\MinGW\msys\1.0\bin" > nul 2>&1 | ||
if NOT ["%errorlevel%"]==["0"] ( | ||
echo FAILED. Rerun with administrator privileges. | ||
pause | ||
) else ( | ||
echo Success! | ||
pause | ||
) | ||
@SETLOCAL ENABLEEXTENSIONS ENABLEDELAYEDEXPANSION | ||
@ECHO OFF | ||
SET CMDLINERUNSTR=%SystemRoot%\system32\cmd.exe | ||
|
||
SET NEWPATH1="C:\MinGW\msys\1.0\bin" | ||
SET NEWPATH2="C:\MinGW\bin" | ||
|
||
:: Make sure paths exist | ||
IF NOT EXIST !NEWPATH1! (ECHO Path not found: %NEWPATH1% && GOTO ExitBatch) | ||
IF NOT EXIST !NEWPATH2! (ECHO Path not found: %NEWPATH2% && GOTO ExitBatch) | ||
|
||
:: Add paths | ||
CALL :AddPath %NEWPATH1% | ||
CALL :AddPath %NEWPATH2% | ||
|
||
:: Branch to UpdateEnv if we need to update | ||
IF DEFINED UPDATE (GOTO UpdateEnv) | ||
|
||
GOTO ExitBatch | ||
|
||
:: ----------------------------------------------------------------------------- | ||
|
||
:UpdateEnv | ||
ECHO Making updated PATH go live . . . | ||
REG delete HKCU\Environment /F /V TEMPVAR > nul 2>&1 | ||
setx TEMPVAR 1 > nul 2>&1 | ||
REG delete HKCU\Environment /F /V TEMPVAR > nul 2>&1 | ||
IF NOT !cmdcmdline! == !CMDLINERUNSTR! (CALL :KillExplorer) | ||
GOTO ExitBatch | ||
|
||
:: ----------------------------------------------------------------------------- | ||
|
||
:ExitBatch | ||
ENDLOCAL | ||
PAUSE | ||
EXIT /b | ||
|
||
:: ----------------------------------------------------------------------------- | ||
|
||
:AddPath <pathToAdd> | ||
ECHO %PATH% | FINDSTR /C:"%~1" > nul | ||
IF ERRORLEVEL 1 ( | ||
REG add "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Environment" /f /v PATH /t REG_SZ /d "%PATH%;%~1" > nul 2>&1 | ||
IF ERRORLEVEL 0 ( | ||
ECHO Adding %1 . . . Success! | ||
SET "PATH=%PATH%;%~1" | ||
SET UPDATE=1 | ||
) ELSE ( | ||
ECHO Adding %1 . . . FAILED. Run this script with administrator privileges. | ||
) | ||
) ELSE ( | ||
ECHO Skipping %1 - Already in PATH | ||
) | ||
EXIT /b | ||
|
||
:: ----------------------------------------------------------------------------- | ||
|
||
:KillExplorer | ||
|
||
ECHO Your desktop is being restarted, please wait. . . | ||
ping -n 5 127.0.0.1 > NUL 2>&1 | ||
ECHO Killing process Explorer.exe. . . | ||
taskkill /f /im explorer.exe | ||
ECHO. | ||
ECHO Your desktop is now loading. . . | ||
ping -n 5 127.0.0.1 > NUL 2>&1 | ||
ECHO. | ||
ping -n 5 127.0.0.1 > NUL 2>&1 | ||
START explorer.exe | ||
START explorer.exe %CD% | ||
EXIT /b |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
29 changes: 29 additions & 0 deletions
29
keyboard/ergodox_ez/keymaps/dvorak_intl_squisher/README.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# ErgoDox EZ Dvorak International Squisher | ||
|
||
Dvorak layout adjusted with several (linux) applications in mind: | ||
|
||
* Easier Escape for VIM | ||
* Windows/Super key for awesome WM | ||
* Alt+Shift for international characters | ||
* PrintScreen for sys-rq | ||
* Insert for the X11 clip-board | ||
|
||
Major layer changes: | ||
|
||
* Common multimedia keys are integrated into layer 0, less common into layer 1 | ||
* No mouse keys | ||
* Layer 2 is qwerty (for easier gaming & less fortunate keyboard users) | ||
|
||
Known issues: | ||
|
||
* Alt+Shift does not work reliably (depends on the X11 kb layout? Not | ||
entirely clear...) | ||
|
||
![layer0](keyboard-layout0.png) | ||
![layer1](keyboard-layout1.png) | ||
![layer2](keyboard-layout2.png) | ||
|
||
## Changelog | ||
|
||
* 2016-03-29 | ||
* Initial release |
Oops, something went wrong.