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
#!/bin/bash | |
# Install Latest XRDP with XORGXRDP and GFX/Glamor server-side acceleration | |
# Tested on Ubuntu 22.04 LTS | |
BUILD_DIR=/tmp/xrdpbuild | |
echo "-> preparing $BUILD_DIR" | |
rm -f -r $BUILD_DIR | |
mkdir -p $BUILD_DIR | |
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
#!/usr/bin/env python3 | |
#exec tail -n +3 $0 | |
# Be careful not to change | |
# the 'exec tail' line above. | |
# This script lives in /etc/grub.d/ | |
# 2015,2022 Ralph Versteegen | |
# The menuentry template was orginally generated by /etc/grub.d/10_linux |
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
# synthy-balls.py -- use rotary encoder to launch balls that play notes when bouncing | |
# 20 Aug 2024 - @todbot / Tod Kurt | |
# video demo: https://youtu.be/cCTPtk6KQQk | |
import time, random, math | |
import board | |
import busio, displayio, terminalio | |
import rotaryio, keypad | |
import audiobusio, audiocore, audiomixer, synthio | |
import gc9a01 | |
#from adafruit_display_text import bitmap_label as label |
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
#! /usr/bin/env python3 | |
# Adapted from [email protected] | |
# see https://github.com/grzegorz914/homebridge-enphase-envoy | |
# <xbar.title>Enphase Solar (Averages)</bitbar.title> | |
# <xbar.version>v1.2</xbar.version> | |
# <xbar.author>Jason Snell</xbar.author> | |
# <xbar.author.github>jasonsnell</xbar.author.github> | |
# <xbar.desc>Display local Enphase solar stats.</xbar.desc> | |
# <swiftbar.hideAbout>true</swiftbar.hideAbout> |
OlderNewer