Skip to content

Instantly share code, notes, and snippets.

@Xerpocalypse
Xerpocalypse / OpenRGB-startup.pyw
Last active January 20, 2024 21:40 — forked from nullxception/OpenRGB-startup.pyw
OpenRGB Startup script to bypass profile loading bug while using Visual Map plugin
#
# OpenRGB-startup.pyw
#
# Started by Windows Task Scheduler on login or when resuming from sleep
#
# Requires openrgb-python: https://github.com/jath03/openrgb-python/
#
'''
│ This script is loosely based on nullxception's OpenRGB startup script:
│ https://gist.github.com/nullxception/230bf4091758d87d73fa05d843b98b56
@Xerpocalypse
Xerpocalypse / disable_vanguard.vbs
Created April 10, 2024 20:50 — forked from AndrewMast/disable_vanguard.vbs
Commands to disable Riot Vanguard when you aren't playing Valorant
' Disables Vanguard from starting when you boot your computer
Call CreateObject("Shell.Application").ShellExecute("cmd.exe", "/c ""sc config vgc start= disabled & sc config vgk start= disabled""", "", "runas")