Skip to content

Instantly share code, notes, and snippets.

View Prakash4844's full-sized avatar
💭
Probably bingeing something.

Prakash Prakash4844

💭
Probably bingeing something.
View GitHub Profile
@Prakash4844
Prakash4844 / iterm2.md
Created October 16, 2023 09:26 — forked from squarism/iterm2.md
An iTerm2 Cheatsheet

Tabs and Windows

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)
@Prakash4844
Prakash4844 / CrossOver.sh
Created November 12, 2023 16:52 — forked from santaklouse/CrossOver.sh
unlimited CrossOver trial (MacOS)
#!/usr/bin/env bash
# checck if pidof exists
PIDOF="$(which pidof)"
# and if not - install it
(test "${PIDOF}" && test -f "${PIDOF}") || brew install pidof
# find app in default paths
CO_PWD=~/Applications/CrossOver.app/Contents/MacOS
test -d "${CO_PWD}" || CO_PWD=/Applications/CrossOver.app/Contents/MacOS