Skip to content

Instantly share code, notes, and snippets.

@confluencepoint
Created November 24, 2022 19:06
Show Gist options
  • Select an option

  • Save confluencepoint/f7d3a6995fc91e0bd32be5959f17ed50 to your computer and use it in GitHub Desktop.

Select an option

Save confluencepoint/f7d3a6995fc91e0bd32be5959f17ed50 to your computer and use it in GitHub Desktop.

Revisions

  1. confluencepoint created this gist Nov 24, 2022.
    24 changes: 24 additions & 0 deletions karabiner.json
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,24 @@
    {
    "title": "DB66 - Neues Finder-Fenster (konfluenzpunkt)",
    "rules": [
    {
    "description": "Global ⌘+N → Neues Finderfenster im Vordergrund",
    "manipulators": [
    {
    "from": {
    "key_code": "n",
    "modifiers": {
    "mandatory": ["command"]
    }
    },
    "to": [
    {
    "shell_command": "osascript -e '\ntell application \"Finder\"\nmake new Finder window\nactivate\nend tell'"
    }
    ],
    "type": "basic"
    }
    ]
    }
    ]
    }