This file contains 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
body { | |
--font-adaptive-normal: var(--font-text-size) !important; | |
} | |
html { | |
font-size: !important; | |
} | |
body { | |
--preview-font-size: !important; |
This file contains 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
# originally by Specnr | |
# edited to use terminal output | |
# parallelization stolen from jojoe | |
import glob | |
from concurrent import futures | |
import os | |
import shutil | |
INST_FOLDER = r"C:\Users\justi\AppData\Roaming\PrismLauncher\instances" |
This file contains 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
# Copyright (c) 2023 tildejustin | |
# 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 | |
# copies of the Software, and to permit persons to whom the Software is | |
# furnished to do so, subject to the following conditions: | |
# The above copyright notice and this permission notice shall be included in all |
This file contains 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
# Copyright (c) 2023 tildejustin | |
# 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 | |
# copies of the Software, and to permit persons to whom the Software is | |
# furnished to do so, subject to the following conditions: | |
# The above copyright notice and this permission notice shall be included in all |
This file contains 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
# Copyright (c) 2023 tildejustin | |
# 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 | |
# copies of the Software, and to permit persons to whom the Software is | |
# furnished to do so, subject to the following conditions: | |
# The above copyright notice and this permission notice shall be included in all |
This file contains 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
#SingleInstance, force | |
#IfWinActive Minecraft ; stolen from sophie | |
; perspective | |
j::F5 | |
F5::return | |
; hotkeys | |
m::1 | |
,::2 |
This file contains 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 os | |
import time | |
from typing import TextIO | |
class Element: | |
containing_class: str | |
signature: str | |
official_name: str | |
intermediary_name: str |
This file contains 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 | |
curr_brightness=$(cat /sys/class/backlight/intel_backlight/brightness) | |
curr_brightness=$(($curr_brightness)) | |
max_brightness="$(cat /sys/class/backlight/intel_backlight/max_brightness)" | |
max_brightness=$(($max_brightness)) | |
brightness=0 | |
# -10%: decrease by a percentage, not going below 0 | |
# +10%: increase by a percentage, not going above $max_brightness | |
# 10%: set to an absolute percentage between 0 and $max_brightness | |
# 10: set to an absoulte brightness not exceeding #max_brightness |
This file contains 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
Subject: [PATCH] personal changes | |
--- | |
Index: config.def.h | |
IDEA additional info: | |
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP | |
<+>UTF-8 | |
=================================================================== | |
diff --git a/config.def.h b/config.def.h | |
--- a/config.def.h (revision a34d8fb4327bbb1afd92e7527c53fcaad547a495) | |
+++ b/config.def.h (date 1700268761282) |
This file contains 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
{ | |
"schemaVersion": 5, | |
"mods": [ | |
{ | |
"modid": "sodium", | |
"name": "Sodium", | |
"description": "Sodium is a free and open-source optimization mod for Minecraft which improves frame rates and reduces lag spikes.", | |
"versions": [ | |
{ | |
"target_version": [ |
OlderNewer