Skip to content

Instantly share code, notes, and snippets.

View PackmanDude's full-sized avatar
🏳️‍⚧️
am neurodivergent and proud of it

Mr. Packman PackmanDude

🏳️‍⚧️
am neurodivergent and proud of it
View GitHub Profile
@PackmanDude
PackmanDude / update_proton.sh
Last active January 4, 2024 12:55 — forked from usrtrv/update_proton.sh
Update every game's proton version.
#!/bin/sh
set -eu
steam_dir="$HOME/.steam"
proton=
list=false
eval set -- "$(getopt -o d:p:l -l directory,proton,list -- "$@")"
while true; do
@PackmanDude
PackmanDude / alphabet.bash
Last active May 18, 2024 07:57
Displays alphabet. Useful, when doing alphabetical sorting by hand.
#!/usr/bin/env bash
# - Example output
#
# A B C D E F G
# H I J K L M N
# O P Q R S T U
# V W X Y Z
for i in {A..Z}