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
/** | |
* | |
* Author : Aditya Shakya (adi1090x) | |
* Github : @adi1090x | |
* | |
* Rofi Theme File | |
* Rofi Version: 1.7.3 | |
**/ | |
/*****----- Configuration -----*****/ |
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
configuration { | |
/* modes: "drun,run,filebrowser,window";*/ | |
font: "Mono 12"; | |
/* location: 0;*/ | |
/* yoffset: 0;*/ | |
/* xoffset: 0;*/ | |
/* fixed-num-lines: true;*/ | |
show-icons: true; | |
terminal: "rofi-sensible-terminal"; | |
ssh-client: "ssh"; |
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
[11:41:00] [Client thread/ERROR] [net.minecraft.client.Minecraft]: ########## GL ERROR ########## | |
[11:41:00] [Client thread/ERROR] [net.minecraft.client.Minecraft]: @ Post render | |
[11:41:00] [Client thread/ERROR] [net.minecraft.client.Minecraft]: 1283: Stack overflow | |
[11:41:00] [Client thread/ERROR] [minecraft/RenderLivingBase]: Couldn't render entity | |
java.lang.ClassCastException: baguchan.hunterillager.client.model.ModelHunterIllager cannot be cast to net.minecraft.client.model.ModelBiped | |
at com.vicmatskiv.weaponlib.compatibility.Interceptors.positionItemSide(Interceptors.java:249) ~[Interceptors.class:?] | |
at net.minecraft.client.renderer.entity.layers.LayerHeldItem.func_188358_a(LayerHeldItem.java:58) ~[ccc.class:?] | |
at net.minecraft.client.renderer.entity.layers.LayerHeldItem.func_177141_a(LayerHeldItem.java:41) ~[ccc.class:?] | |
at baguchan.hunterillager.client.render.RenderHunterIllager$1.func_177141_a(RenderHunterIllager.java:31) ~[RenderHunterIllager$1.class:?] | |
at net.minecraft.client.renderer.entity.Re |
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
from sys import argv, exit | |
from os import listdir, remove | |
from os.path import getctime, join | |
import json | |
log_dir = argv[1] | |
dir_list = listdir(log_dir) | |
logs = [] |
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 obspython as obs | |
def script_load(settings): | |
print('rec-nanoleaf script loaded') | |
obs.obs_frontend_add_event_callback(on_event) | |
def list_update(props, prop): | |
l = obs.obs_properties_get(props, "list") |
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 obspython as obs | |
last_switched_scene = None | |
last_switched_scene_id = None | |
last_scene = None | |
last_scene_id = None | |
def _handle_key(toggle_scene, toggle_scene_id): |