Skip to content

Instantly share code, notes, and snippets.

@iamthenuggetman
iamthenuggetman / sunshine-on-bazzite.md
Last active December 28, 2025 16:09
Sunshine on Bazzite with virtual display
  1. First connect whatever display you want to use Moonlight on. I'll be using a 65" Roku TV. I connected it to my laptop running Fedora and after my system detected it I use for p in /sys/class/drm/*/status; do con=${p%/status}; echo -n "${con#*/card?-}: "; cat $p; done to find which directory has the EDID file for me it's HDMI-A-1

  2. Copy that edid file to your home directory cp /sys/class/drm/card0-HDMI-A-1/edid ~/. Now get that edid file over to your Bazzite (streaming machine). I used LocalSend to transfer it.

  3. Create a directory to store this new edid file sudo mkdir -p /usr/local/lib/firmware then place the file in there sudo mv ./edid.bin /usr/local/lib/firmware/

  4. Add this new edid to your kernel args sudo rpm-ostree kargs --append-if-missing="firmware_class.path=/usr/local/lib/firmware drm.edid_firmware=HDMI-A-1:edid.bin video=HDMI-A-1:e"

  5. Reboot systemctl reboot. After you log back into Bazzite open up your Display Configuration window (right-click on desktop) and notice you h

@philoSurfer
philoSurfer / gulpfile.js
Last active April 24, 2020 21:16
drupal/zurb_foundation/STARTER/ gulp 4 work
(() => {
'use strict';
/**************** Gulp.js 4 configuration ****************/
const
// development or production
devBuild = ((process.env.NODE_ENV || 'development').trim().toLowerCase() === 'development'),
@scottgruber
scottgruber / UCLA Color Palette c. 2013 -
Last active August 29, 2015 13:56
Sass variables for UCLA Color Palette c. 2013 -
/* New UCLA Color Palette ver. 1 release 03/23/2012 */
// Primary color
$uclablue : rgb(50, 132, 191); // #3399cc
// Secondary Colors
$uclagold : rgb(254,187,54); // #ffb300
$uclayellow : rgb(255,232,0); // #ffe800
@brandonkelly
brandonkelly / templating.md
Last active November 14, 2025 22:07
Templating in EE vs. Craft