Skip to content

Instantly share code, notes, and snippets.

View patbonecrusher's full-sized avatar
:octocat:

Patrick Laplante patbonecrusher

:octocat:
View GitHub Profile

Force RGB Color on M1 Mac

How to Force RGB Color Output instead of YPbPr on your M1 Apple Silicon Mac for an External Monitor.

This step-by-step video tutorial will guide you through the procedure of forcing RGB color output on your M1 Mac.

Force RGB Color on M1 Mac

Here is the direct link to the video tutorial: https://www.youtube.com/watch?v=Z1EqH3fd0V4

The video also has Closed Captions (Subtitles) that you can enable, to make it easier to follow if needed.

@patbonecrusher
patbonecrusher / c_cpp_properties.json
Created October 5, 2022 17:56 — forked from gyulkkajo/c_cpp_properties.json
IntelliSense config file for Linux kernel X86_64.
{
"configurations": [
{
"name": "Linux",
"includePath": [
"${workspaceFolder}",
"LINUX_PATH/include",
"LINUX_PATH/include/uapi",
"LINUX_PATH/include/generated",
"LINUX_PATH/arch/x86/include",
@patbonecrusher
patbonecrusher / it-ebooks.md
Created October 27, 2020 01:31 — forked from baiwfg2/it-ebooks.md
Download ebooks as you want
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Jigsaw puzzle</title>
<script type="text/javascript">
function save(filename, data)
{
var blob = new Blob([data], {type: "text/csv"});
@patbonecrusher
patbonecrusher / Makefile
Created January 22, 2020 15:08 — forked from Integralist/Makefile
Example of a detailed Makefile
# Hello, and welcome to makefile basics.
#
# You will learn why `make` is so great, and why, despite its "weird" syntax,
# it is actually a highly expressive, efficient, and powerful way to build
# programs.
#
# Once you're done here, go to
# http://www.gnu.org/software/make/manual/make.html
# to learn SOOOO much more.
{
"meta": {
"theme": "elegant"
},
"basics": {
"name": "Pat Laplante",
"label": "System Engineer at D3 Engineering",
"picture": "",
"email": "a@a.com",
"phone": "",
@patbonecrusher
patbonecrusher / .chunkwmrc
Created March 13, 2019 20:04 — forked from shihanng/.chunkwmrc
chunkwm + skhd
#!/bin/bash
#
# NOTE: specify the absolutepath to the directory to use when
# loading a plugin. '~' expansion is supported.
#
chunkc core::plugin_dir /usr/local/opt/chunkwm/share/chunkwm/plugins
#
@patbonecrusher
patbonecrusher / .envrc
Created June 19, 2018 02:10 — forked from gudleik/.envrc
Node.js direnv setup
# Either use node version specified in package.json
use node package.json
# Or a specific version
use node 5.0.0
# Rest of direnv setup..
export FOO=BAR
@patbonecrusher
patbonecrusher / .envrc
Created June 19, 2018 02:10 — forked from gudleik/.envrc
Node.js direnv setup
# Either use node version specified in package.json
use node package.json
# Or a specific version
use node 5.0.0
# Rest of direnv setup..
export FOO=BAR
@patbonecrusher
patbonecrusher / homebrew.md
Created January 3, 2018 23:54 — forked from indiesquidge/homebrew.md
How to and Best of Homebrew

Homebrew

How To

Homebrew is a package management system for OS X. You can read more about it here, or simply run

ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

to install it.