export LUKS_PASSPHRASE='passphrase'
sudo --preserve-env=LUKS_PASSPHRASE ./archinstall.sh
| package io.github.ensamisten.util; | |
| import net.minecraft.world.item.component.FireworkExplosion; | |
| public class CustomFireworkShapes { | |
| public static FireworkExplosion.Shape RAINBOW; | |
| } |
| package io.github.ensamisten.command.brigadier; | |
| import com.mojang.brigadier.Command; | |
| import com.mojang.brigadier.CommandDispatcher; | |
| import com.mojang.brigadier.arguments.IntegerArgumentType; | |
| import com.mojang.serialization.Codec; | |
| import com.mojang.serialization.codecs.RecordCodecBuilder; | |
| import it.unimi.dsi.fastutil.ints.IntArrayList; | |
| import net.minecraft.commands.CommandSourceStack; | |
| import net.minecraft.commands.Commands; |
| package io.github.ensamisten.client.gui; | |
| import io.github.ensamisten.client.module.Extension; | |
| import io.github.ensamisten.client.module.ModuleManager; | |
| import io.github.ensamisten.client.module.player.CopyChat; | |
| import io.github.ensamisten.client.module.screen.*; | |
| import net.fabricmc.api.EnvType; | |
| import net.fabricmc.api.Environment; | |
| import net.minecraft.client.Minecraft; | |
| import net.minecraft.client.Options; |
| package io.github.ensamisten.client.gui; | |
| import io.github.ensamisten.client.config.ButtonsConfig; | |
| import io.github.ensamisten.client.module.Extension; | |
| import io.github.ensamisten.client.module.ModuleManager; | |
| import io.github.ensamisten.client.module.screen.FriendGuardConfigScreen; | |
| import io.github.ensamisten.client.module.screen.KillAuraConfigScreen; | |
| import io.github.ensamisten.client.module.screen.WhomStruckMeLastScreen; | |
| import net.fabricmc.api.EnvType; | |
| import net.fabricmc.api.Environment; |
| package io.github.ensamisten.client.screen; | |
| import com.mojang.blaze3d.platform.NativeImage; | |
| import com.mojang.blaze3d.textures.GpuSampler; | |
| import com.mojang.blaze3d.textures.GpuTextureView; | |
| import io.github.ensamisten.Allyship; | |
| import io.github.simonscholz.qrcode.QrCodeConfig; | |
| import io.github.simonscholz.qrcode.QrCodeFactory; | |
| import net.fabricmc.api.EnvType; | |
| import net.fabricmc.api.Environment; |
| #!/usr/bin/env bash | |
| set -euo pipefail | |
| # ArchISO guided installer for: | |
| # - Encrypted /boot (LUKS1) + encrypted LVM PV (LUKS) | |
| # - LVM: swap/root/home (home=100%FREE) | |
| # - GRUB with cryptodisk | |
| # - mkinitcpio custom install hook to embed keyfiles into initramfs | |
| # | |
| # WARNING: THIS DESTROYS THE SELECTED DISK. |
export LUKS_PASSPHRASE='passphrase'
sudo --preserve-env=LUKS_PASSPHRASE ./archinstall.sh
| package io.github.ensamisten.command; | |
| import com.mojang.brigadier.CommandDispatcher; | |
| import com.mojang.brigadier.context.CommandContext; | |
| import net.minecraft.client.MinecraftClient; | |
| import net.minecraft.client.util.Clipboard; | |
| import net.minecraft.client.util.Window; | |
| import net.minecraft.component.DataComponentTypes; | |
| import net.minecraft.component.type.NbtComponent; | |
| import net.minecraft.component.type.WritableBookContentComponent; |
| package io.github.ensamisten.command.brigadier; | |
| import com.mojang.brigadier.CommandDispatcher; | |
| import com.mojang.brigadier.arguments.StringArgumentType; | |
| import com.mojang.brigadier.context.CommandContext; | |
| import com.mojang.brigadier.suggestion.Suggestions; | |
| import com.mojang.brigadier.suggestion.SuggestionsBuilder; | |
| import net.fabricmc.fabric.api.client.command.v2.ClientCommandManager; | |
| import net.fabricmc.fabric.api.client.command.v2.FabricClientCommandSource; | |
| import net.minecraft.text.Text; |