Skip to content

Instantly share code, notes, and snippets.

new entry "S5E_NegativeEnergyFlood_Save"
type "PassiveData"
data "Properties" "IsHidden"
data "StatsFunctorContext" "OnHeal;OnHealed"
data "StatsFunctors" "RemoveStatus(NEGATIVE_ENERGY_FLOOD_TECHNICAL_PC);RemoveStatus(NEGATIVE_ENERGY_FLOOD_TECHNICAL)"
data "Properties" "IsHidden"
new entry "S5E_NegativeEnergyFlood"
type "PassiveData"
@kvnbias
kvnbias / hotkeys.ahk
Last active July 25, 2024 11:56
Windows 10 Hotkeys
; LEGEND:
; Alt : !
; Ctrl : ^
; Shift : +
; Win : #
; KEYS
; :*:\ : Backslash
@kvnbias
kvnbias / setup.ps1
Last active August 5, 2022 13:04
Windows 10 Setup
##########
# Default preset
$tweaks = @(
"RequireAdmin",
"InstallChoco",
"InvertMouse",
@kvnbias
kvnbias / WIN.md
Last active August 2, 2023 08:18
Windows Notes & Settings

Windows 10 Disable Auto-Close quotes

Settings > Time & Language > Language > Preferred Languages > Remove Language or change language by ALT+Shift

380951774

Hosts File

c:\windows\system32\drivers\etc\hosts

WIndows 10 Invert Mouse

@kvnbias
kvnbias / uefi-startup-fixer.sh
Last active May 17, 2020 14:09
uefi-startup-fixer.sh
os=$(echo -n $(cat /etc/*-release 2> /dev/null | grep ^ID= | sed -e "s/ID=//" | sed -e 's/"//g'))
if [ -d /sys/firmware/efi/efivars ] && [ ! -f "/boot/efi/startup.nsh" ]; then
sudo mkdir -p /boot/efi/EFI/boot
if [ -d "/boot/efi/EFI/refind" ]; then
sudo cp -a /boot/efi/EFI/refind/refind_x64.efi /boot/efi/EFI/boot/bootx64.efi
elif [ -d "/boot/efi/EFI/grub" ]; then
sudo cp -a /boot/efi/EFI/grub/grubx64.efi /boot/efi/EFI/boot/bootx64.efi
elif [ -d "/boot/efi/EFI/GRUB" ]; then
@kvnbias
kvnbias / gentoo-install.sh
Last active May 1, 2019 10:23
gentoo-install.sh
#!/bin/bash
# NOTE this script is only tested in my machines
echo "Checking if UEFI mode is enabled..."
if [ -d /sys/firmware/efi/efivars ]; then
echo "UEFI mode is enabled..."
else
echo "UEFI mode is not enabled..."
@kvnbias
kvnbias / arch-install.sh
Last active May 6, 2019 08:46
arch-install.sh
#!/bin/bash
# NOTE this script is only tested in my machines
echo "Checking if UEFI mode is enabled..."
if [ -d /sys/firmware/efi/efivars ]; then
echo "UEFI mode is enabled..."
else
echo "UEFI mode is not enabled..."
fi