Skip to content

Instantly share code, notes, and snippets.

View consoleSkunk's full-sized avatar
🦨

consoleSkunk

🦨
View GitHub Profile
@consoleSkunk
consoleSkunk / cohost-alt-text.user.css
Last active June 26, 2024 22:42
Cohost Alt Text: Shows an "ALT" indicator for images with alt text.
/* ==UserStyle==
@name Cohost Alt Text
@author Erika
@namespace github.com/openstyles/stylus
@version 1.0.2
@description Shows an "ALT" indicator for images with alt text.
@homepageURL https://gist.github.com/consoleSkunk/6dc000e39a364c69b01dd258f054b64b
@updateURL https://gist.githubusercontent.com/consoleSkunk/6dc000e39a364c69b01dd258f054b64b/raw/cohost-alt-text.user.css
@license CC0-1.0
==/UserStyle== */
@consoleSkunk
consoleSkunk / blocklandProfiles.cs
Last active December 30, 2022 16:37
Every single Blockland profile, including Torque Game Engine comments where applicable.
//-----------------------------------------------------------------------------
// Torque Game Engine
// Copyright (C) GarageGames.com, Inc.
//-----------------------------------------------------------------------------
//--------------------------------------------------------------------------
$Gui::fontCacheDirectory = ExpandFilename ("base/client/ui/cache");
$Gui::clipboardFile = ExpandFilename ("base/client/ui/cache/clipboard.gui");
// ==UserScript==
// @name @chaoticvibing Twitter Blue Nerd - twitter.com
// @namespace Violentmonkey Scripts
// @match *://*.twitter.com/*
// @grant none
// @version 1.9.0
// @author @chaoticvibing - GH @busybox11
// @description 11/9/2022, 11:45:28 PM
// @updateURL https://gist.githubusercontent.com/Enbika/f30cca3a63c1c28e276f7dacb7255b0a/raw/twitterblue-nerd.js
// @downloadURL https://gist.githubusercontent.com/Enbika/f30cca3a63c1c28e276f7dacb7255b0a/raw/twitterblue-nerd.js
[Background]
Color=92,53,101
RandomHueRange=360
RandomSaturationRange=100
[BackgroundFaint]
Color=63,36,70
RandomHueRange=360
RandomSaturationRange=100
@consoleSkunk
consoleSkunk / saveChatLog.sh
Last active May 3, 2022 16:02
Bash script to extract Brickadia chat from game log files; for the Linux version of the game.
#!/bin/bash
# edit this if the brickadia directory is not in its default location
BRICKADIA_DIR=$HOME/.config/Epic/Brickadia/Saved
# path to save chatlogs to
CHATLOG_FOLDER=$BRICKADIA_DIR/ChatLogs
# make sure that the ChatLogs folder exists
[ ! -d $CHATLOG_FOLDER ] && mkdir -p $CHATLOG_FOLDER
@consoleSkunk
consoleSkunk / .gitignore
Last active November 12, 2021 23:23
lib32-libxnvctrl-470xx
pkg/
src/
*.tar.*
@consoleSkunk
consoleSkunk / brickadia-launcher.yml
Last active July 17, 2024 02:32
Lutris install script for the Brickadia Launcher
results:
- name: Brickadia
game_slug: brickadia
version: Launcher (Native)
slug: brickadia-launcher
runner: linux
script:
files:
- launcher: https://static.brickadia.com/launcher/1.5/brickadia-launcher.tar.xz
game:
@consoleSkunk
consoleSkunk / remove-wine-integrations.sh
Last active December 18, 2022 17:39
Remove as many of the Wine integrations as possible.
#!/bin/bash
XDG_DATA_HOME=${XDG_DATA_HOME:-~/.local/share}
rm ${XDG_CONFIG_HOME:-~/.config}/menus/applications-merged/wine* -v 2>/dev/null
rm $XDG_DATA_HOME/applications/wine-extension-*.desktop -v 2>/dev/null
rm -r $XDG_DATA_HOME/applications/wine -v 2>/dev/null
rm $XDG_DATA_HOME/desktop-directories/wine* -v 2>/dev/null
rm $XDG_DATA_HOME/icons/hicolor/*/apps/????_*.png -v 2>/dev/null
rm $XDG_DATA_HOME/icons/hicolor/*/apps/*-x-wine-extension-*.png -v 2>/dev/null
rm $XDG_DATA_HOME/icons/hicolor/*/apps/*-x-ms-*.png -v 2>/dev/null
@consoleSkunk
consoleSkunk / classicube-protocol-handler.desktop
Last active May 13, 2020 20:48
ClassiCube mc:// protocol launcher for Linux
[Desktop Entry]
Name=ClassiCube Protocol Handler
Comment=Launch ClassiCube from mc:// links online
Exec=/path/to/classicube-protocol.sh %u
Type=Application
MimeType=x-scheme-handler/mc;
NoDisplay=true
// ==UserScript==
// @name Stack Overflow - Force Dark Theme
// @namespace stackoverflow.com
// @match https://stackoverflow.com/*
// @grant none
// @version 1.0
// @author Erika
// @run-at document-end
// @downloadURL https://gist.github.com/Enbika/62e5f3be0badd4aac513321aea16afef/raw/stackoverflow-dark.user.js
// ==/UserScript==