Skip to content

Instantly share code, notes, and snippets.

View 5ouma's full-sized avatar
🍩
のしょーん

Souma 5ouma

🍩
のしょーん
View GitHub Profile
@5ouma
5ouma / macos_keyboard_shortcuts_exporter_importer.php
Last active March 1, 2025 08:01 — forked from miclf/macos_keyboard_shortcuts_exporter_importer.php
⌨️ A small tool to automatically export and import custom macOS keyboard shortcuts
#!/usr/bin/env php
<?php
// Determine which command has been called.
$cmd = (!empty($argv[1])) ? strtolower($argv[1]) : null;
// If an invalid number of arguments has been passed (or if no argument
// was given at all), display help information.
if ($argc < 2 || $argc > 3 || !in_array($cmd, ['save', 'load'])) {