Skip to content

Instantly share code, notes, and snippets.

View lmauromb's full-sized avatar
😴
sleeping

Luis Mauro lmauromb

😴
sleeping
  • MongoDB
  • Monterrey
View GitHub Profile
@lmauromb
lmauromb / ke-caps-ctrl.json
Last active May 13, 2024 00:35
KE Complex Modifications
{
"description": "Change caps_lock to left_control if pressed with other keys, change caps_lock to escape if pressed alone, change left_control ton caps_lock",
"manipulators": [
{
"from": {
"key_code": "caps_lock",
"modifiers": {
"optional": [
"any"
]
@lmauromb
lmauromb / emoji-support-RPIOS.md
Last active June 30, 2020 22:57
Add Emoji support to Chromium in Raspberry OS using the Google Noto font
@lmauromb
lmauromb / aliases.sh
Created January 21, 2020 08:27
common alias for bash
#! /bin/sh
# Colors used for status updates
ESC_SEQ="\x1b["
COL_RESET=$ESC_SEQ"39;49;00m"
COL_RED=$ESC_SEQ"31;01m"
COL_GREEN=$ESC_SEQ"32;01m"
COL_YELLOW=$ESC_SEQ"33;01m"
COL_BLUE=$ESC_SEQ"34;01m"
COL_MAGENTA=$ESC_SEQ"35;01m"