Skip to content

Instantly share code, notes, and snippets.

View RobChiocchio's full-sized avatar
📚
Working

Rob Chiocchio RobChiocchio

📚
Working
View GitHub Profile
@RobChiocchio
RobChiocchio / install-flatpak-betterdiscord.sh
Last active July 18, 2025 21:14
Install BetterDiscord for the Flatpak version of Discord on Linux
#!/bin/bash
# This script installs BetterDiscord for the Flatpak version of Discord on Linux.
# Written by Rob Chiocchio on 04/30/2024
### Variables ###
# Color variables
NO_COLOR="\033[0m"
COLOR="\033[0;36m" # Cyan
# Flatpak Discord AppID and download URL for latest BetterDiscord Linux AppImage release
@RobChiocchio
RobChiocchio / brighness_alias
Created March 27, 2024 03:25
Alias to set brighness for dual LG monitors
brightness() {
ddcutil -d 1 setvcp 0x10 $1&
ddcutil -d 2 setvcp 0x10 $1&
wait
}
@RobChiocchio
RobChiocchio / fix_itad_waitlist.py
Created March 7, 2024 15:07
Clear unwanted games from Is There Any Deal waitlist backup file
import json
# Load JSON from file
with open('2024-03-07-1442.tksqc.waitlist.backup.json', 'r') as f:
data = json.load(f)
# Filter out entries with unwanted "added" values
data['data'] = [entry for entry in data['data']['data'][1]['games'] if entry['added'] not in [1709822337, 1709822338]]
# Write filtered data back to the file
/*
* Qogir Dark
*
* Based on Qogir Gtk Theme (https://github.com/vinceliuice/Qogir-theme)
*
* Author: Rob Chiocchio
* User: robethx
*
*/
@RobChiocchio
RobChiocchio / CoopPatch.txt
Last active September 7, 2020 09:55
Borderlands 2 patch for COOP with 5+ players
#mutate DisablePure
set GameInfo MaxPlayers 64
set GameInfo MaxPlayersAllowed 64
set GameInfo MaxSpectators 64
set GameInfo MaxSpectatorsAllowed 64
set WillowCoopGameInfo NumPlayers 3
set UIGameInfoSummary bIsTeamGame true
#!/bin/bash
if [ -z "$1" ]; then
echo $1
read -p 'Process name to search for: ' varprocess
else
varprocess=$1
fi
top -b -n 1 | grep -i --line-buffered $varprocess
; Please visit https://github.com/RobethX/AutoHotKey-Scripts/ for an updated version
; MIT License
; Copyright (c) 2017 Rob Chiocchio
; Permission is hereby granted, free of charge, to any person obtaining a copy
; of this software and associated documentation files (the "Software"), to deal
; in the Software without restriction, including without limitation the rights
; to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
#!/bin/bash
# By Rob Chiocchio - http://steamcommunity.com/profiles/76561198069792788
#####################
### Configuration ###
#####################
steamuser="username" # You must sign in with an account, you cannot use "anonymous". It is reccomended that you make a new account for this because it requires you to have Steam guard disabled
steampass="password"
appid="17520"