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
| ; EWOZ Extended Woz Monitor. | |
| ; Just a few mods to the original monitor. | |
| ;------------------------------------------------------------------------- | |
| ORG $FD40 | |
| ;------------------------------------------------------------------------- | |
| ; Memory declaration | |
| ;------------------------------------------------------------------------- |
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
| # Nerd Fonts for your IDE | |
| # https://www.nerdfonts.com/font-downloads | |
| brew tap homebrew/cask-fonts && brew install --cask font-3270-nerd-font | |
| brew tap homebrew/cask-fonts && brew install --cask font-fira-mono-nerd-font | |
| brew tap homebrew/cask-fonts && brew install --cask font-inconsolata-go-nerd-font | |
| brew tap homebrew/cask-fonts && brew install --cask font-inconsolata-lgc-nerd-font | |
| brew tap homebrew/cask-fonts && brew install --cask font-inconsolata-nerd-font | |
| brew tap homebrew/cask-fonts && brew install --cask font-monofur-nerd-font | |
| brew tap homebrew/cask-fonts && brew install --cask font-overpass-nerd-font |
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
| # Updated from https://gist.github.com/pkazmier to support yabai | |
| # | |
| # The following configuration heavily leverages modal keymaps to minimize the | |
| # pollution of global keybindings. In addition, the modal keymaps facilitate | |
| # the consistent use of the same keybindings across different modes. For | |
| # example, this configuration uses 'h', 'l', 'j', and 'k' to represent west, | |
| # east, south, and north when: changing focus, warping windows, resizing | |
| # windows, swapping windows, and moving floating windows. Those four keys are | |
| # mapped differently depending on the current mode to provide a consistent user | |
| # experience. |
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
| api.map('L', 'D'); | |
| api.unmap('D'); | |
| api.map('H', 'S'); | |
| api.unmap('S'); | |
| api.map('d','x'); | |
| api.unmap('x'); | |
| api.map('u','X'); | |
| api.unmap('X'); | |
| api.map('J', 'R'); | |
| api.map('K', 'E'); |
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
| /*********************************************** | |
| * Millisecond clock by Cellie | |
| * needs a 128x64 SSD1306 OLED on pins 19 and 23 | |
| **********************************************/ | |
| #include "WiFi.h" | |
| #include "SSD1306.h" //https://github.com/squix78/esp8266-oled-ssd1306 | |
| // i2c pin definitions for oled | |
| #define I2C_SCL_PIN 19 | |
| #define I2C_SDA_PIN 23 |
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
| //#define CALIBRATE | |
| //#define GRID // After Calibration this mode should plot a pretty good dot grid on the screen | |
| // See additional calibration comments in the code down by the "#ifdef CALIBRATE" | |
| // Adjust these values for servo arms in position for state 1 _| | |
| const double SERVO_LEFT_ZERO = 1600; | |
| const double SERVO_RIGHT_SCALE = 690; // + makes rotate further left | |
| // Adjust these values for servo arms in position for state 2 |_ | |
| const double SERVO_RIGHT_ZERO = 650; |
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
| ; acceleration_enabled = {acceleration_enabled} | |
| ; acceleration_infill = {acceleration_infill} | |
| ; acceleration_ironing = {acceleration_ironing} | |
| ; acceleration_layer_0 = {acceleration_layer_0} | |
| ; acceleration_prime_tower = {acceleration_prime_tower} | |
| ; acceleration_print = {acceleration_print} | |
| ; acceleration_print_layer_0 = {acceleration_print_layer_0} | |
| ; acceleration_roofing = {acceleration_roofing} | |
| ; acceleration_skirt_brim = {acceleration_skirt_brim} | |
| ; acceleration_support = {acceleration_support} |
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
| #cVim-link-container, .cVim-link-hint, #cVim-command-bar, #cVim-command-bar-mode, #cVim-command-bar-input, #cVim-command-bar-search-results, .cVim-completion-item, .cVim-completion-item .cVim-full, .cVim-completion-item .cVim-left, .cVim-completion-item .cVim-right, #cVim-hud, #cVim-status-bar { | |
| font-family: Helvetica, Helvetica Neue, Neue, sans-serif, Arial; | |
| font-size: 9pt !important; | |
| -webkit-font-smoothing: antialiased !important; | |
| border-radius: 4px!important; | |
| } | |
| #cVim-link-container { | |
| position: absolute; | |
| pointer-events: none; |