fix(hypridle,sysupdate,archiso): misc improvements
- hypridle: remove fprintd restart from after_sleep_cmd (caused resume delays) - sysupdate: add --packages/-p, --configs/-c, --both/-b selective update modes; move config sync prompt before package step in --both mode - archiso: add wds-deploy.sh for packaging M-Archy netboot artifacts for WDS/PXELinux Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>main
parent
49ece6a238
commit
708137831b
|
|
@ -2,7 +2,7 @@ general {
|
||||||
lock_cmd = pidof hyprlock || hyprlock
|
lock_cmd = pidof hyprlock || hyprlock
|
||||||
before_sleep_cmd = loginctl lock-session
|
before_sleep_cmd = loginctl lock-session
|
||||||
# fprintd restart ensures fingerprint sensor is ready after resume
|
# fprintd restart ensures fingerprint sensor is ready after resume
|
||||||
after_sleep_cmd = systemctl restart fprintd.service ; hyprctl dispatch dpms on
|
after_sleep_cmd = hyprctl dispatch dpms on
|
||||||
ignore_dbus_inhibit = false # respect systemd-inhibit locks (presence-detect, caffeine)
|
ignore_dbus_inhibit = false # respect systemd-inhibit locks (presence-detect, caffeine)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,257 @@
|
||||||
|
#!/usr/bin/env bash
|
||||||
|
# wds-deploy.sh — Package M-Archy archiso netboot artifacts for WDS + PXELinux deployment
|
||||||
|
#
|
||||||
|
# Usage:
|
||||||
|
# bash wds-deploy.sh --http-srv URL [OPTIONS] [OUT_DIR]
|
||||||
|
#
|
||||||
|
# --http-srv URL HTTP base URL where arch netboot files will be served
|
||||||
|
# (e.g. http://192.168.1.10/m-archy)
|
||||||
|
# Arch's initrd fetches airootfs.sfs over HTTP at boot time.
|
||||||
|
# Required.
|
||||||
|
# --tftp-prefix PATH Subdirectory within the WDS TFTP root for kernel/initramfs
|
||||||
|
# (default: m-archy)
|
||||||
|
# --preconf [FILE] Passed through to build.sh — embeds an answerfile into the ISO
|
||||||
|
# --no-rebuild Skip the archiso build if a netboot tarball already exists
|
||||||
|
# OUT_DIR Output directory (default: ~/m-archy-out)
|
||||||
|
#
|
||||||
|
# Output layout (inside OUT_DIR/wds-deploy/):
|
||||||
|
# TFTP/ Copy contents to WDS TFTP root: C:\RemoteInstall\Boot\x64\
|
||||||
|
# HTTP/ Serve as HTTP root at the URL given to --http-srv
|
||||||
|
# wds-tftp.zip Zip of TFTP/ — drop onto the Windows Server directly
|
||||||
|
#
|
||||||
|
# WDS deployment steps:
|
||||||
|
# 1. Serve HTTP/ over IIS/Nginx at the --http-srv URL
|
||||||
|
# 2. Extract wds-tftp.zip into C:\RemoteInstall\Boot\x64\
|
||||||
|
# 3. In WDS console → server Properties → Boot tab:
|
||||||
|
# Set "Default boot program" for x64 to: Boot\x64\pxelinux.0
|
||||||
|
# 4. PXE-boot a client — the M-Archy menu appears
|
||||||
|
|
||||||
|
set -euo pipefail
|
||||||
|
|
||||||
|
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
||||||
|
SYSLINUX_BIOS="/usr/lib/syslinux/bios"
|
||||||
|
|
||||||
|
# ── Argument parsing ───────────────────────────────────────────────────────────
|
||||||
|
HTTP_SRV=""
|
||||||
|
TFTP_PREFIX="m-archy"
|
||||||
|
PRECONF_ARGS=()
|
||||||
|
NO_REBUILD=0
|
||||||
|
OUT_ARG=""
|
||||||
|
|
||||||
|
while [[ $# -gt 0 ]]; do
|
||||||
|
case "$1" in
|
||||||
|
--http-srv)
|
||||||
|
[[ $# -gt 1 ]] || { echo "ERROR: --http-srv requires a URL" >&2; exit 1; }
|
||||||
|
HTTP_SRV="$2"; shift 2 ;;
|
||||||
|
--http-srv=*)
|
||||||
|
HTTP_SRV="${1#--http-srv=}"; shift ;;
|
||||||
|
--tftp-prefix)
|
||||||
|
[[ $# -gt 1 ]] || { echo "ERROR: --tftp-prefix requires a value" >&2; exit 1; }
|
||||||
|
TFTP_PREFIX="$2"; shift 2 ;;
|
||||||
|
--tftp-prefix=*)
|
||||||
|
TFTP_PREFIX="${1#--tftp-prefix=}"; shift ;;
|
||||||
|
--preconf)
|
||||||
|
if [[ $# -gt 1 && "${2:0:1}" != "-" ]]; then
|
||||||
|
PRECONF_ARGS=(--preconf "$2"); shift 2
|
||||||
|
else
|
||||||
|
PRECONF_ARGS=(--preconf); shift
|
||||||
|
fi ;;
|
||||||
|
--preconf=*)
|
||||||
|
PRECONF_ARGS=("$1"); shift ;;
|
||||||
|
--no-rebuild)
|
||||||
|
NO_REBUILD=1; shift ;;
|
||||||
|
-*)
|
||||||
|
echo "Unknown flag: $1" >&2; exit 1 ;;
|
||||||
|
*)
|
||||||
|
OUT_ARG="$1"; shift ;;
|
||||||
|
esac
|
||||||
|
done
|
||||||
|
|
||||||
|
OUT_DIR="${OUT_ARG:-${OUT_DIR:-$HOME/m-archy-out}}"
|
||||||
|
WDS_DIR="$OUT_DIR/wds-deploy"
|
||||||
|
|
||||||
|
# ── Validate ──────────────────────────────────────────────────────────────────
|
||||||
|
if [[ -z "$HTTP_SRV" ]]; then
|
||||||
|
echo "ERROR: --http-srv <URL> is required." >&2
|
||||||
|
echo " The Arch initrd fetches airootfs.sfs over HTTP at boot." >&2
|
||||||
|
echo " Example: --http-srv http://192.168.1.10/m-archy" >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
HTTP_SRV="${HTTP_SRV%/}" # strip trailing slash
|
||||||
|
|
||||||
|
# ── Ensure syslinux is available ──────────────────────────────────────────────
|
||||||
|
if [[ ! -f "$SYSLINUX_BIOS/pxelinux.0" ]]; then
|
||||||
|
echo "syslinux not found — installing..."
|
||||||
|
sudo pacman -S --noconfirm syslinux
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [[ ! -f "$SYSLINUX_BIOS/pxelinux.0" ]]; then
|
||||||
|
echo "ERROR: $SYSLINUX_BIOS/pxelinux.0 still not found after install." >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
# ── Build ISO + netboot tarball (unless --no-rebuild) ─────────────────────────
|
||||||
|
NETBOOT_TARBALL="$(ls "$OUT_DIR/"*-netboot-*.tar.gz 2>/dev/null | head -n1 || true)"
|
||||||
|
|
||||||
|
if [[ "$NO_REBUILD" -eq 1 && -n "$NETBOOT_TARBALL" ]]; then
|
||||||
|
echo "Skipping build — using existing tarball: $(basename "$NETBOOT_TARBALL")"
|
||||||
|
else
|
||||||
|
echo "Building archiso (this may take a while)..."
|
||||||
|
bash "$SCRIPT_DIR/build.sh" "${PRECONF_ARGS[@]+"${PRECONF_ARGS[@]}"}" "$OUT_DIR"
|
||||||
|
NETBOOT_TARBALL="$(ls "$OUT_DIR/"*-netboot-*.tar.gz 2>/dev/null | head -n1 || true)"
|
||||||
|
fi
|
||||||
|
|
||||||
|
[[ -n "$NETBOOT_TARBALL" ]] \
|
||||||
|
|| { echo "ERROR: No netboot tarball found in $OUT_DIR — build may have failed." >&2; exit 1; }
|
||||||
|
|
||||||
|
echo "Using netboot tarball: $(basename "$NETBOOT_TARBALL")"
|
||||||
|
|
||||||
|
# ── Extract netboot tarball ───────────────────────────────────────────────────
|
||||||
|
EXTRACT_DIR="$OUT_DIR/.netboot-extracted"
|
||||||
|
rm -rf "$EXTRACT_DIR"
|
||||||
|
mkdir -p "$EXTRACT_DIR"
|
||||||
|
echo "Extracting netboot tarball..."
|
||||||
|
tar -xzf "$NETBOOT_TARBALL" -C "$EXTRACT_DIR"
|
||||||
|
|
||||||
|
VMLINUZ="$(find "$EXTRACT_DIR" -name 'vmlinuz-linux' | head -n1 || true)"
|
||||||
|
INITRAMFS="$(find "$EXTRACT_DIR" -name 'initramfs-linux.img' | head -n1 || true)"
|
||||||
|
ARCH_DIR="$(find "$EXTRACT_DIR" -maxdepth 2 -type d -name 'arch' | head -n1 || true)"
|
||||||
|
|
||||||
|
[[ -f "$VMLINUZ" ]] || { echo "ERROR: vmlinuz-linux not found in netboot tarball." >&2; exit 1; }
|
||||||
|
[[ -f "$INITRAMFS" ]] || { echo "ERROR: initramfs-linux.img not found in netboot tarball." >&2; exit 1; }
|
||||||
|
[[ -d "$ARCH_DIR" ]] || { echo "ERROR: arch/ directory not found in netboot tarball." >&2; exit 1; }
|
||||||
|
|
||||||
|
# ── Build WDS deployment tree ─────────────────────────────────────────────────
|
||||||
|
#
|
||||||
|
# TFTP root layout (mirrors what WDS serves via TFTP):
|
||||||
|
# pxelinux.0 PXELinux bootloader
|
||||||
|
# ldlinux.c32 required by pxelinux.0
|
||||||
|
# menu.c32 + libcom32.c32 + libutil.c32 text boot menu
|
||||||
|
# pxelinux.cfg/default boot menu config
|
||||||
|
# <tftp-prefix>/arch/boot/x86_64/vmlinuz-linux
|
||||||
|
# <tftp-prefix>/arch/boot/x86_64/initramfs-linux.img
|
||||||
|
#
|
||||||
|
# HTTP root layout (served at $HTTP_SRV/ over IIS/Nginx/Apache):
|
||||||
|
# arch/x86_64/airootfs.sfs fetched by initrd at boot
|
||||||
|
# arch/x86_64/airootfs.sfs.sha512
|
||||||
|
# arch/pkglist.x86_64.txt (and any other netboot files)
|
||||||
|
|
||||||
|
TFTP_ROOT="$WDS_DIR/TFTP"
|
||||||
|
HTTP_ROOT="$WDS_DIR/HTTP"
|
||||||
|
|
||||||
|
rm -rf "$WDS_DIR"
|
||||||
|
mkdir -p \
|
||||||
|
"$TFTP_ROOT/$TFTP_PREFIX/arch/boot/x86_64" \
|
||||||
|
"$TFTP_ROOT/pxelinux.cfg" \
|
||||||
|
"$HTTP_ROOT"
|
||||||
|
|
||||||
|
# ── Copy syslinux modules ─────────────────────────────────────────────────────
|
||||||
|
echo "Copying syslinux PXELinux modules..."
|
||||||
|
REQUIRED_MODS=(pxelinux.0 ldlinux.c32 menu.c32 libcom32.c32 libutil.c32)
|
||||||
|
MISSING_MODS=()
|
||||||
|
|
||||||
|
for mod in "${REQUIRED_MODS[@]}"; do
|
||||||
|
if [[ -f "$SYSLINUX_BIOS/$mod" ]]; then
|
||||||
|
cp "$SYSLINUX_BIOS/$mod" "$TFTP_ROOT/"
|
||||||
|
else
|
||||||
|
MISSING_MODS+=("$mod")
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
|
||||||
|
if [[ ${#MISSING_MODS[@]} -gt 0 ]]; then
|
||||||
|
echo "Warning: missing syslinux modules (non-fatal for some setups): ${MISSING_MODS[*]}"
|
||||||
|
fi
|
||||||
|
|
||||||
|
# ── Copy kernel and initramfs ─────────────────────────────────────────────────
|
||||||
|
echo "Copying kernel and initramfs..."
|
||||||
|
cp "$VMLINUZ" "$TFTP_ROOT/$TFTP_PREFIX/arch/boot/x86_64/vmlinuz-linux"
|
||||||
|
cp "$INITRAMFS" "$TFTP_ROOT/$TFTP_PREFIX/arch/boot/x86_64/initramfs-linux.img"
|
||||||
|
|
||||||
|
# ── Copy HTTP content (airootfs squashfs and supporting files) ────────────────
|
||||||
|
echo "Copying HTTP content (airootfs + supporting files)..."
|
||||||
|
cp -r "$ARCH_DIR" "$HTTP_ROOT/arch"
|
||||||
|
|
||||||
|
# ── Generate pxelinux.cfg/default ────────────────────────────────────────────
|
||||||
|
echo "Writing pxelinux.cfg/default..."
|
||||||
|
|
||||||
|
# Kernel path is relative to the TFTP root
|
||||||
|
KERNEL_PATH="${TFTP_PREFIX}/arch/boot/x86_64/vmlinuz-linux"
|
||||||
|
INITRD_PATH="${TFTP_PREFIX}/arch/boot/x86_64/initramfs-linux.img"
|
||||||
|
|
||||||
|
# archiso_http_srv must end with a slash; archisobasedir is the subdir within it
|
||||||
|
# that contains the x86_64/ squashfs tree
|
||||||
|
APPEND_BASE="initrd=${INITRD_PATH} archiso_http_srv=${HTTP_SRV}/ archisobasedir=arch ip=dhcp"
|
||||||
|
|
||||||
|
cat > "$TFTP_ROOT/pxelinux.cfg/default" <<PXECFG
|
||||||
|
DEFAULT menu.c32
|
||||||
|
PROMPT 0
|
||||||
|
TIMEOUT 150
|
||||||
|
ONTIMEOUT m-archy
|
||||||
|
|
||||||
|
MENU TITLE M-Archy Arch Linux Installer
|
||||||
|
|
||||||
|
LABEL m-archy
|
||||||
|
MENU LABEL M-Archy Arch Linux Installer
|
||||||
|
KERNEL ${KERNEL_PATH}
|
||||||
|
APPEND ${APPEND_BASE}
|
||||||
|
|
||||||
|
LABEL m-archy-console
|
||||||
|
MENU LABEL M-Archy Arch Linux Installer (console only, no auto-launch)
|
||||||
|
KERNEL ${KERNEL_PATH}
|
||||||
|
APPEND ${APPEND_BASE} systemd.unit=multi-user.target
|
||||||
|
|
||||||
|
LABEL m-archy-ssh
|
||||||
|
MENU LABEL M-Archy Arch Linux Installer (SSH access enabled)
|
||||||
|
KERNEL ${KERNEL_PATH}
|
||||||
|
APPEND ${APPEND_BASE} systemd.unit=multi-user.target sshd=1
|
||||||
|
|
||||||
|
LABEL local
|
||||||
|
MENU LABEL Boot from local disk
|
||||||
|
LOCALBOOT 0
|
||||||
|
PXECFG
|
||||||
|
|
||||||
|
# ── Zip TFTP directory for easy transfer to Windows Server ────────────────────
|
||||||
|
ZIP_FILE="$WDS_DIR/wds-tftp.zip"
|
||||||
|
echo "Creating wds-tftp.zip..."
|
||||||
|
if command -v zip &>/dev/null; then
|
||||||
|
(cd "$TFTP_ROOT" && zip -r "$ZIP_FILE" .)
|
||||||
|
echo "Created: $ZIP_FILE"
|
||||||
|
else
|
||||||
|
echo "Note: 'zip' not installed — skipping wds-tftp.zip creation."
|
||||||
|
echo " Install with: sudo pacman -S zip"
|
||||||
|
fi
|
||||||
|
|
||||||
|
# ── Summary ───────────────────────────────────────────────────────────────────
|
||||||
|
echo
|
||||||
|
echo "========================================================================="
|
||||||
|
echo " WDS deployment package: $WDS_DIR"
|
||||||
|
echo "========================================================================="
|
||||||
|
echo
|
||||||
|
echo " TFTP/ → WDS TFTP root (copy to Windows Server)"
|
||||||
|
echo " Destination: C:\\RemoteInstall\\Boot\\x64\\"
|
||||||
|
echo " Tip: use wds-tftp.zip if created above, or robocopy/SCP the TFTP/ tree."
|
||||||
|
echo
|
||||||
|
echo " HTTP/ → HTTP root (serve at: ${HTTP_SRV}/)"
|
||||||
|
echo " The initrd fetches: ${HTTP_SRV}/arch/x86_64/airootfs.sfs"
|
||||||
|
echo " Serve with IIS, Nginx, or Apache pointing to the HTTP/ directory."
|
||||||
|
echo
|
||||||
|
echo " pxelinux.cfg/default kernel args summary:"
|
||||||
|
echo " archiso_http_srv = ${HTTP_SRV}/"
|
||||||
|
echo " archisobasedir = arch"
|
||||||
|
echo
|
||||||
|
echo " WDS configuration steps:"
|
||||||
|
echo " 1. Copy TFTP/ contents to C:\\RemoteInstall\\Boot\\x64\\"
|
||||||
|
echo " 2. Serve HTTP/ over IIS/Nginx at: ${HTTP_SRV}/"
|
||||||
|
echo " 3. Open WDS console → right-click server → Properties → Boot tab:"
|
||||||
|
echo " x64 default boot program: Boot\\x64\\pxelinux.0"
|
||||||
|
echo " Check 'Always continue the PXE boot' for unknown clients"
|
||||||
|
echo " 4. If WDS manages DHCP, ensure option 67 is: Boot\\x64\\pxelinux.0"
|
||||||
|
echo " If using a separate DHCP server, set:"
|
||||||
|
echo " option 66 (next-server) = <WDS server IP>"
|
||||||
|
echo " option 67 (boot-file) = Boot\\x64\\pxelinux.0"
|
||||||
|
echo " 5. PXE-boot a client — the M-Archy menu should appear."
|
||||||
|
echo
|
||||||
|
echo " File sizes:"
|
||||||
|
du -sh "$TFTP_ROOT" "$HTTP_ROOT" 2>/dev/null | sed 's/^/ /'
|
||||||
|
echo "========================================================================="
|
||||||
51
sysupdate.sh
51
sysupdate.sh
|
|
@ -1,6 +1,6 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
# sysupdate — Arch Linux System Update TUI
|
# sysupdate — Arch Linux System Update TUI
|
||||||
# Usage: sysupdate [--AI]
|
# Usage: sysupdate [--AI] [--packages|-p] [--configs|-c] [--both|-b]
|
||||||
# Deps: yay, pacman-contrib (checkupdates), curl, python3, dialog
|
# Deps: yay, pacman-contrib (checkupdates), curl, python3, dialog
|
||||||
# flatpak (optional) | claude CLI (required for --AI)
|
# flatpak (optional) | claude CLI (required for --AI)
|
||||||
# State: /updatestate — ISO timestamp of last completed update
|
# State: /updatestate — ISO timestamp of last completed update
|
||||||
|
|
@ -17,7 +17,15 @@ readonly NEWS_FEED="https://archlinux.org/feeds/news/"
|
||||||
DOTFILES="${DOTFILES:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
|
DOTFILES="${DOTFILES:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
|
||||||
|
|
||||||
AI_MODE=false
|
AI_MODE=false
|
||||||
for _arg in "$@"; do [[ "$_arg" == "--AI" ]] && AI_MODE=true; done
|
UPDATE_MODE="both" # packages | configs | both
|
||||||
|
for _arg in "$@"; do
|
||||||
|
case "$_arg" in
|
||||||
|
--AI) AI_MODE=true ;;
|
||||||
|
--packages|-p) UPDATE_MODE="packages" ;;
|
||||||
|
--configs|-c) UPDATE_MODE="configs" ;;
|
||||||
|
--both|-b) UPDATE_MODE="both" ;;
|
||||||
|
esac
|
||||||
|
done
|
||||||
|
|
||||||
# ═══════════════════════════════════════════════════════════════════════════════
|
# ═══════════════════════════════════════════════════════════════════════════════
|
||||||
# TERMINAL / COLOR SETUP
|
# TERMINAL / COLOR SETUP
|
||||||
|
|
@ -568,11 +576,23 @@ _migrate_hypr_usr() {
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# Patch known stale paths inside hypr/usr/ that aren't auto-synced.
|
||||||
|
_fix_hypr_usr() {
|
||||||
|
local usr_dir="${XDG_CONFIG_HOME:-$HOME/.config}/hypr/usr"
|
||||||
|
[[ -d "$usr_dir" ]] || return 0
|
||||||
|
local input_lua="$usr_dir/input.lua"
|
||||||
|
if [[ -f "$input_lua" ]] && grep -q 'require("input-device-exceptions")' "$input_lua"; then
|
||||||
|
sed -i 's/require("input-device-exceptions")/require("usr.input-device-exceptions")/' "$input_lua"
|
||||||
|
ok "Fixed require path in hypr/usr/input.lua ${DI}(input-device-exceptions → usr.input-device-exceptions)${RS}"
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
sync_configs() {
|
sync_configs() {
|
||||||
section "Config Sync"
|
section "Config Sync"
|
||||||
|
|
||||||
# ── Migration: old flat layout → hypr/usr/ ───────────────────────────────
|
# ── Migration: old flat layout → hypr/usr/ ───────────────────────────────
|
||||||
_migrate_hypr_usr
|
_migrate_hypr_usr
|
||||||
|
_fix_hypr_usr
|
||||||
|
|
||||||
# ── Preferred: use the installed update-configs.sh ───────────────────────
|
# ── Preferred: use the installed update-configs.sh ───────────────────────
|
||||||
local cfg_script
|
local cfg_script
|
||||||
|
|
@ -675,11 +695,27 @@ declare -a FLATPAK_PKGS=()
|
||||||
main() {
|
main() {
|
||||||
header
|
header
|
||||||
|
|
||||||
# ── Read state ───────────────────────────────────────────────────────────
|
# ── Configs-only mode ────────────────────────────────────────────────────
|
||||||
|
if [[ "$UPDATE_MODE" == "configs" ]]; then
|
||||||
|
if ask "Sync dotfiles configs to ~/.config?"; then
|
||||||
|
sync_configs
|
||||||
|
fi
|
||||||
|
rm -f "$_NEWS_PY"
|
||||||
|
exit 0
|
||||||
|
fi
|
||||||
|
|
||||||
|
# ── Read state (packages / both modes) ───────────────────────────────────
|
||||||
local last_update; last_update=$(read_state)
|
local last_update; last_update=$(read_state)
|
||||||
log "Last recorded update: ${BO}${last_update}${RS}"
|
log "Last recorded update: ${BO}${last_update}${RS}"
|
||||||
echo
|
echo
|
||||||
|
|
||||||
|
# ── Config sync (both mode) ──────────────────────────────────────────────
|
||||||
|
if [[ "$UPDATE_MODE" == "both" ]]; then
|
||||||
|
if ask "Sync dotfiles configs to ~/.config?"; then
|
||||||
|
sync_configs
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
# ── Collect available updates ────────────────────────────────────────────
|
# ── Collect available updates ────────────────────────────────────────────
|
||||||
section "Collecting Updates"
|
section "Collecting Updates"
|
||||||
|
|
||||||
|
|
@ -705,10 +741,6 @@ main() {
|
||||||
echo
|
echo
|
||||||
ok "${BO}System is up to date.${RS}"
|
ok "${BO}System is up to date.${RS}"
|
||||||
write_state
|
write_state
|
||||||
echo
|
|
||||||
if ask "Sync dotfiles configs to ~/.config?"; then
|
|
||||||
sync_configs
|
|
||||||
fi
|
|
||||||
rm -f "$_NEWS_PY"
|
rm -f "$_NEWS_PY"
|
||||||
exit 0
|
exit 0
|
||||||
fi
|
fi
|
||||||
|
|
@ -861,11 +893,6 @@ main() {
|
||||||
fi
|
fi
|
||||||
echo
|
echo
|
||||||
|
|
||||||
# ── Config sync ──────────────────────────────────────────────────────────
|
|
||||||
if ask "Sync dotfiles configs to ~/.config?"; then
|
|
||||||
sync_configs
|
|
||||||
fi
|
|
||||||
|
|
||||||
rm -f "$_NEWS_PY"
|
rm -f "$_NEWS_PY"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue