Skip to content

Instantly share code, notes, and snippets.

@LasseR15
LasseR15 / README.md
Created December 28, 2023 12:47
Fix MagicQ Visualizer not working under Linux

Fix MagicQ Visualizer not working under Linux/showing black screen

To fix this issue, I simply had to run the following commands in bash:

sudo su
cd /opt/magicq/lib
rm libstdc++.so.6
ln -s /usr/lib/x86_64-linux-gnu/libstdc++.so.6 ./
@LasseR15
LasseR15 / README.md
Last active October 5, 2025 16:13
Install Steam in a unprivileged LXC in Proxmox with GPU passthrough

Install Steam in a unprivileged LXC in Proxmox with GPU passthrough

Tested working features/Setup notes

  • Using KasmVNC as a vnc server (access the desktop via your browser)
  • Unprivileged LXC in Proxmox 7.4 (no extra features enabled, if you're using PVE 8 ignore this guide, there is an easier way via the gui)
  • Running Debian 12
  • AMD APU passthrough from host CPU (should also work with Intel and Nvidia, but haven't tested it)
  • Linux native aswell as Windows (Proton) games

My Hardware-Setup

@LasseR15
LasseR15 / README.md
Last active November 13, 2021 11:14 — forked from Pindar/README.md
Headless A2DP Audio Streaming on Raspbian Stretch with Python 3

About

This gist will show how to setup Raspbian Stretch as a headless Bluetooth A2DP audio sink. This will allow your phone, laptop or other Bluetooth device to play audio wirelessly through a Rasperry Pi.

Motivation

A quick search will turn up a plethora of tutorials on setting up A2DP on the Raspberry Pi. However, I felt this gist was necessary because this solution is:

  • Automatic & Headless - Once setup, the system is entirely automatic. No user iteration is required to pair, connect or start playback. Therefore the Raspberry Pi can be run headless.
  • Simple - This solution has few dependencies, readily available packages and minimal configuration.
  • Up to date

Prerequisites