- Download CXWine 23.7.1 from this repo.
- Backup the Wine folder in
~/Library/Application Support/com.isaacmarovitz.Whisky/Libraries
toWine.old
or something similar. - Extract the downloaded CXWine archive and move the contents of the extracted
install
folder to the previous location ofWine
. - Unquarantine the files in the extracted folder by running
xattr -r -d com.apple.quarantine Wine
. - Profit!
- Except it doesn't work. Will try to figure out why someday!
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
localhost { | |
import /include/cloudflare-proxies | |
} |
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
export default { | |
async fetch(request, env, ctx) { | |
const response = await fetch("https://cdn.yukata.dev/7cp001g.null"); // 10GB of zeroes gzipped | |
return new Response(response.body, { | |
headers: { | |
"Content-Encoding": "gzip", | |
"Content-Type": "text/plain; charset=utf-8" | |
}, | |
encodeBody: "manual", |
OlderNewer