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 | |
# 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 |
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
brightness() { | |
ddcutil -d 1 setvcp 0x10 $1& | |
ddcutil -d 2 setvcp 0x10 $1& | |
wait | |
} |
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
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 |
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
/* | |
* Qogir Dark | |
* | |
* Based on Qogir Gtk Theme (https://github.com/vinceliuice/Qogir-theme) | |
* | |
* Author: Rob Chiocchio | |
* User: robethx | |
* | |
*/ |
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
#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 |
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 | |
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 |
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
; 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 |
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 | |
# 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" |