Skip to content

Instantly share code, notes, and snippets.

View jaworek's full-sized avatar
👹
Helo

Jan Jaworski jaworek

👹
Helo
View GitHub Profile
@jaworek
jaworek / caps2esc.json
Created November 20, 2024 22:25
Karabiner caps-lock esc ctrl
// https://github.com/dreamsofcode-io/escapecontrol/blob/main/macos/karabiner/caps2esc.json
// https://www.youtube.com/watch?v=XuQVbZ0wENE
{
"description": "Change caps_lock to left_control if pressed with other keys, change caps_lock to escape if pressed alone.",
"manipulators": [
{
"from": {
"key_code": "caps_lock",
"modifiers": {
"optional": [
@jaworek
jaworek / shutdown.sh
Last active April 19, 2020 18:41
Automatically shutdown serwer when usage is lower than 25% for at least 30 minutes.
#!/bin/sh
BASEDIR=$(dirname "$0")
file="$BASEDIR/inactivity_count.txt"
if [ ! -e $file ]
then
touch $file
echo 0 > $file