| Function | Shortcut |
|---|---|
| New Tab | ⌘ + T |
| Close Tab or Window | ⌘ + W (same as many mac apps) |
| Go to Tab | ⌘ + Number Key (ie: ⌘2 is 2nd tab) |
| Go to Split Pane by Direction | ⌘ + Option + Arrow Key |
| Cycle iTerm Windows | ⌘ + backtick (true of all mac apps and works with desktops/mission control) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
| // Fix for the official Dracula Theme found at https://draculatheme.com/sublime not supporting YAML Syntax Highlighting. | |
| // Simply run "Customize Color Scheme" from the Sublime Command Palette and paste in this text. | |
| // Or, if you hate convenience, just place this file in your user folder at ".../Sublime Text/Packages/User/Dracula.sublime-color-scheme" | |
| // | |
| // Documentation at https://www.sublimetext.com/docs/color_schemes.html | |
| { | |
| "variables": | |
| { | |
| }, | |
| "globals": |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ### This compose is tested and working on an Xpenology "DS920+" | |
| ### running on an HP 290 G1 (i3-7100). | |
| ### I highly recommend visiting DrFrankenstein's Tech Stuff Blog | |
| ### for a full walk-through and setup guide if you are on a | |
| ### Synology/Xpenology system, or if you're new to Linux User Perimissions. | |
| ### | |
| ### Links: | |
| ### https://drfrankenstein.co.uk/2021/12/06/plex-in-docker-on-a-synology-nas-hardware-transcoding/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| -- AppleScript to create a new file in Finder | |
| -- | |
| -- Use it in Automator, with the following configuration: | |
| -- - Service receives: no input | |
| -- - In: Finder.app | |
| -- | |
| -- References: | |
| -- - http://apple.stackexchange.com/a/129702 | |
| -- - http://stackoverflow.com/a/6125252/2530295 | |
| -- - http://www.russellbeattie.com/blog/fun-with-the-os-x-finder-and-applescript |