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
| #!/usr/bin/env bash | |
| # Secure Arch Linux / Hyprland / Quickshell installer for an Arch ISO. | |
| # DESTRUCTIVE: this installer erases the explicitly selected system disk and, | |
| # when requested, two explicitly selected offline key-backup drives. They are | |
| # not boot media and are never required for normal startup. | |
| set -Eeuo pipefail | |
| shopt -s inherit_errexit | |
| umask 077 | |
| readonly VERSION="1.0.0-rc1" |
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
| #!/usr/bin/env bash | |
| set -euo pipefail | |
| owners=( | |
| "bissell-inc" | |
| "{{USERNAME}}" | |
| ) | |
| base_dir="${BASE_DIR:-.}" |
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 os | |
| import numpy as np | |
| from PIL import Image, ImageEnhance, ImageFilter | |
| # ----------------------------- | |
| # CONFIG | |
| # ----------------------------- | |
| INPUT_IMAGE = "base.png" | |
| OUTPUT_ROOT = "outputs" | |
| SIZE = (2560, 1080) |