Skip to content

Instantly share code, notes, and snippets.

View OmegaRogue's full-sized avatar
🏳️‍⚧️

OmegaRogue OmegaRogue

🏳️‍⚧️
View GitHub Profile
.actor.sheet .crb-style {
grid-template-columns: initial !important;
grid-template-areas: "header " "nav " "content" !important;
}
.actor.sheet .crb-style aside {
display: none !important;
/*border : 3px solid aqua;*/
}
.actor.sheet .crb-style header.char-header {
@OmegaRogue
OmegaRogue / rpi-devicecheck.sh
Last active October 3, 2023 11:46
small POSIX shell script to safely image drives while filtering out unwanted drives and asking for confirmation
#!/bin/sh
# libalpine https://github.com/alpinelinux/alpine-conf/blob/master/libalpine.sh.in
PREFIX=@PREFIX@
PROGRAM=$(basename $0)
: ${ROOT:=/}
@OmegaRogue
OmegaRogue / omegavoid.zsh-theme
Created January 3, 2022 00:16
custom version of agnoster
# vim:ft=zsh ts=2 sw=2 sts=2
#
# agnoster's Theme - https://gist.github.com/3712874
# A Powerline-inspired theme for ZSH
#
# # README
#
# In order for this theme to render correctly, you will need a
# [Powerline-patched font](https://github.com/Lokaltog/powerline-fonts).
# Make sure you have a recent version: the code points that Powerline
image:
distribution: "alpinelinux"
release: edge
source:
downloader: alpinelinux-http
same_as: 3.15
url: http://dl-cdn.alpinelinux.org/alpine/
keys:
- 0482D84022F52DF1C4E7CD43293ACD0907D9495A
@OmegaRogue
OmegaRogue / ActionMenu.css
Last active January 5, 2024 20:58
Fusion360 project browser dark theme (moved https://github.com/OmegaRogue/FusionStyle )
/* :root {
--scrollbar-color: #47474B;
--scrollbar-hover-color: #47474B;
--main-bg-color: #323232;
--main-fg-color: #C0C0C6;
--main-selected-bg-color: #4A4D51;
--main-selected-fg-color: #EEEEEE;
--main-active-bg-color: #354F85;
--main-active-fg-color: var(--main-selected-fg-color);
--outer-bg-color: #383838;
@OmegaRogue
OmegaRogue / ti84+_layout.sh
Created February 28, 2021 23:25
Change layout to US for Ti-84+ as USB Peripheral Keyboard
#!/bin/sh
ID=$(xinput -list | grep -i TI-84 | cut -f2 | cut -c4-)
setxkbmap -device $ID us
echo "Changed layout of Ti-84+ (Device $ID) to en_US"
@OmegaRogue
OmegaRogue / LogOutput.log
Created November 6, 2020 15:54
Nimbatus-Mods BepInEx.MonoMod.Loader crash logs
[Message: BepInEx] Chainloader ready
[Message: BepInEx] Chainloader started
[Info : BepInEx] 2 plugins to load
[Info : BepInEx] Loading [Nimbatus-Mods API 3.0.0]
[Info : BepInEx] Loading [Configuration Manager 16.1]
[Message: BepInEx] Chainloader startup complete
[Error : Unity Log] [Steamworks.NET] SteamAPI_Init() failed. Refer to Valve's documentation or the comment above this line for more information.
@OmegaRogue
OmegaRogue / FT-0405-U.json
Created October 30, 2020 16:00
OTD Config for Wacom Volito
{
"Name": "Wacom FT-0405-U",
"DigitizerIdentifiers": [
{
"Width": 128.0,
"Height": 98.0,
"MaxX": 5104.0,
"MaxY": 3712.0,
"MaxPressure": 512,
"ActiveReportID": {
InvalidOperationException: EntityManager cannot be used from this context job mode False != current mode True
Unity.Entities.EntityManager.GetCheckedEntityDataAccess () (at Library/PackageCache/com.unity.entities@0.10.0-preview.6/Unity.Entities/EntityManager.cs:67)
Unity.Entities.SystemState.Init (Unity.Entities.World world, System.Type managedType) (at Library/PackageCache/com.unity.entities@0.10.0-preview.6/Unity.Entities/ComponentSystemBase.cs:102)
Unity.Entities.ComponentSystemBase.CreateInstance (Unity.Entities.World world) (at Library/PackageCache/com.unity.entities@0.10.0-preview.6/Unity.Entities/ComponentSystemBase.cs:419)
Unity.Entities.World.AddSystem_OnCreate_Internal (Unity.Entities.ComponentSystemBase system) (at Library/PackageCache/com.unity.entities@0.10.0-preview.6/Unity.Entities/World.cs:417)
Unity.Entities.World.CreateSystemInternal (System.Type type) (at Library/PackageCache/com.unity.entities@0.10.0-preview.6/Unity.Entities/World.cs:357)
Unity.Entities.World.GetOrCreateSystem[T] () (at Li
@OmegaRogue
OmegaRogue / follow-dotfile-pi.sh
Last active May 23, 2020 20:28
Dotfile follow script
which git >/dev/null && ([[ -d ~/dotfiles ]] && \
(echo "Updating dotfiles on %h ..." && cd ~/dotfiles && git pull && ./install >/dev/null) || \
(echo "Installing dotfiles on %h ..." && git clone https://github.com/OmegaRogue/dotfiles-local -b pi && ./dotfiles/install >/dev/null))