Skip to content

Instantly share code, notes, and snippets.

@PeglinX
PeglinX / readme.txt
Last active May 28, 2023 21:29
3Doku (Puzzlescript Plus Script)
/////
3Doku
/////
Play this game here: https://auroriax.github.io/PuzzleScript/play.html?p=de57200435f012bff161c899c2950713
@PeglinX
PeglinX / readme.txt
Last active December 22, 2023 19:13
Pipeline (Puzzlescript Plus Script)
Pipe Line (A PuzzleScript Plus Game) WIP
==========
Play Here: https://auroriax.github.io/PuzzleScript/play.html?p=b9d325f154f39b4c5fc8856085c37b94
==========
Remix this game by pasting the script in https://auroriax.github.io/PuzzleScript/editor.html
This game uses PuzzleScript Pus which is in turn a fork of PuzzleScript
@Ethorbit
Ethorbit / switch-session-user.sh
Last active June 18, 2025 00:47
Switch Steam Deck desktop user with a single sudo command.
#!/bin/bash
user="$1"
if ! [[ `id "$user" 2> /dev/null` ]]; then
echo "Not a valid user" 1>&2 && exit 1
fi
if [[ `echo "$user" | grep "|"` ]]; then
echo "Username cannot have '|'" 1>&2 && exit 1
fi