Master Your MX Keys: Remap Keys for a Personalized Workflow

If you’re using the Logitech MXKeys keyboard via Bluetooth on macOS and want to swap the right CMD (⌘) and OPT (⌥) keys, this guide will walk you through remapping the keys using a custom script and a plist configuration. Why Remap? The default key mapping on macOS for the MXKeys might not match your personal preference, especially if you’re coming from another operating system or have a specific workflow in mind. In this case, we want to swap the right-side CMD (⌘) and OPT (⌥) keys to better suit the user’s needs. ...

September 6, 2024 · 3 min

SSH Keys: A Simple Guide to Secure Remote Access

Secure Shell (SSH) keys are a widely used method for secure authentication between systems, especially in managing remote servers. Using SSH keys eliminates the need for password-based logins, enhancing both security and convenience. Below is a guide on how to generate two types of SSH keys: RSA and ED25519. Generating an RSA Key To create an RSA key with 4096-bit encryption, use the following command: ssh-keygen -o -t rsa -b 4096 -C "your_username" ...

August 6, 2023 · 3 min