Skip to content

Instantly share code, notes, and snippets.

View 0x4248's full-sized avatar
:octocat:

0x4248 (Blix) 0x4248

:octocat:
View GitHub Profile
@ellsies
ellsies / Crossover.sh
Last active July 23, 2024 18:12
Crackover (Complete free version of crossover)
#!/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