Skip to content

Instantly share code, notes, and snippets.

@BangL
BangL / script.lua
Created October 30, 2025 01:59
Tabletop Simulator - Doppelpatience
function onLoad()
spawnDeck({x = 3, y = 2, z = 10})
spawnDeck({x = -3, y = 2, z = -10}, true)
end
function spawnDeck(pos, isP2)
spawnObject({
type = "Deck",
position = pos,
callback_function = function(deck)
@BangL
BangL / syncrepo.sh
Last active November 10, 2020 03:58
chaotic-aur mirroring script
#!/bin/bash
target="/home/chaotic/http/chaotic-aur"
tmp="/home/chaotic/tmp"
lock="/home/chaotic/syncrepo.lck"
bwlimit=0
source_url='rsync://lonewolf.pedrohlc.com/chaotic-aur/'
lastupdate_url='https://lonewolf.pedrohlc.com/chaotic-aur/lastupdate'
@BangL
BangL / compton.conf
Created May 29, 2018 20:41
~/.config/compton.conf
#################################
#
# Backend
#
#################################
# Backend to use: "xrender" or "glx".
# GLX backend is typically much faster but depends on a sane driver.
backend = "glx";