Skip to content

Instantly share code, notes, and snippets.

View Lyceris-chan's full-sized avatar
😴
sleeping

Lacia~chan Lyceris-chan

😴
sleeping
  • Eichenwalde, Germany
View GitHub Profile
@Lyceris-chan
Lyceris-chan / GameUserSettings.ini
Created August 16, 2023 20:47
Predecessor Game User Settings
[/Script/Predecessor.LyraSettingsLocal]
OverallVolume=0.300000
MusicVolume=0.000000
DisplayStatList=((ClientFPS, TextOnly),(FrameTime, TextOnly),(FrameTime_GPU, TextOnly),(Ping, TextOnly),(PacketLoss_Incoming, TextOnly),(PacketLoss_Outgoing, TextOnly))
DisplayGamma=2.200000
FrameRateLimit_OnBattery=240.000000
FrameRateLimit_InMenu=240.000000
FrameRateLimit_WhenBackgrounded=240.000000
bUseMotionBlur=False
MobileFrameRateLimit=30
@Lyceris-chan
Lyceris-chan / stuff.css
Last active May 13, 2023 05:27
custom CSS rules meant to be used with the Ultra theme for Better Discord
/* Misc changes "stolen" I mean borrowed from the vencord css-snippets channel along with some personal changes */
/* Changes made in Ultra.theme.css */
/* [Changed]: https://fonts.googleapis.com > api.fonts.coollabs.io */
/* [Changed]: importing Lato > Manrope and removed :wght and &display=swap from both font imports (fixes buttons / text clipping issues?)
/* [Added]: @import url('https://d3sox.me/complementary-discord-theme/hide-nitro-upselling.theme.css');
/* [Changed]: --font: "Lato"; > --font: "Manrope";
/* Fixes the scrollbar icons appearing when using certain fonts */
[class*="headerText-"] {
- CSS Beautifier and Formatter
https://www.freeformatter.com/css-beautifier.html
- HTML Beautifier and Formatter
https://www.freeformatter.com/html-formatter.html
- DirtyMarkup Formatter
https://www.10bestdesign.com/dirtymarkup/
## All paths / links to the sauce
arch/arm64/boot/dts/vendor
https://android.googlesource.com/kernel/msm-extra/devicetree/+/refs/heads/android-msm-redbull-4.19-android12-qpr1
arch/arm64/boot/dts/vendor/qcom/display
https://android.googlesource.com/kernel/msm-extra/display-devicetree/+/refs/heads/android-msm-redbull-4.19-android12-qpr1
techpack/audio
https://android.googlesource.com/kernel/msm-extra/+/refs/heads/android-msm-redbull-4.19-android12-qpr1
@Lyceris-chan
Lyceris-chan / denials.py
Created March 1, 2020 21:57 — forked from ProtoChuz/denials.py
Selinux Denial Fixer
# Denials Input : denials.txt | Fix Output : fixdenials.txt
import re
denres = ""
denlist = []
with open("denials.txt") as deninput:
denlines = deninput.readlines()
regex = {}
regex[0] = re.compile(r"scontext=u:r:(.*?):", re.IGNORECASE)
regex[1] = re.compile(r"tcontext=.*:(.*?):", re.IGNORECASE)