This file contains hidden or 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
| #| -------------------------------------------------------------------------- | |
| 40%-format layout on a US ANSI laptop keyboard | |
| OVERVIEW | |
| ======== | |
| This configuration fits several constraints. It must: | |
| - Minimize wrist strain. | |
| - Work on keyboards with standard wide spacebars (meaning few, if any, other |
This file contains hidden or 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
| (defcfg | |
| input (device-file "/dev/input/by-path/platform-i8042-serio-0-event-kbd") | |
| output (uinput-sink "KMonad output") | |
| fallthrough true | |
| allow-cmd true | |
| ) | |
| ;; Approximately matches Galago Pro 5 | |
| (defsrc |
This file contains hidden or 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
| var TIMER = (function() { | |
| var _time = 0 | |
| var _startTime = null | |
| var _stopTime = null | |
| var _running = false | |
| return { | |
| start: function() { | |
| this.output() | |
| _startTime = new Date() | |
| _running = true |
This file contains hidden or 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
| <!doctype html> | |
| <html> | |
| <head> | |
| <link rel="stylesheet" href="http://cdn.jsdelivr.net/normalize/2.1.0/normalize.css"> | |
| <link rel="stylesheet" href="main.css"> | |
| <link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700,800"> | |
| <link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Lato:100,900"> | |
| <link rel="stylesheet" href="http://cdnjs.cloudflare.com/ajax/libs/font-awesome/3.0.2/css/font-awesome.min.css"> | |
| </head> |