Remove .local/bin/dnd

Remove .local/bin/fishify-envs
Remove .local/bin/fishify_envs
Remove .local/bin/fix-loopback
Remove .local/bin/hyprtoggle
Remove .local/bin/localhost
Remove .local/bin/low-battery-warn
Remove .local/bin/make-pwa
Remove .local/bin/niri-cycle
Remove .local/bin/niri-event-handler
Remove .local/bin/push-chezmoi
Remove .local/bin/push_chezmoi
Remove .local/bin/tmux-sessionizer
Remove .local/bin/update_lsps
Remove .local/bin/hooks/generic
This commit is contained in:
Lewis Wynne 2026-01-07 15:08:46 +00:00
parent 917b479a94
commit 9c6f940eb1
15 changed files with 0 additions and 431 deletions

View file

@ -1,20 +0,0 @@
#!/usr/bin/env bash
in="$1"
if [[ -z "$in" ]]; then
echo "usage: $0 input_file"
exit 1
fi
while IFS= read -r line; do
[[ -z "$line" || "$line" =~ ^# ]] && continue
if [[ "$line" =~ ^([A-Za-z_][A-Za-z0-9_]*)=(.*)$ ]]; then
var="${BASH_REMATCH[1]}"
val="${BASH_REMATCH[2]}"
val="${val%\"}"
val="${val#\"}"
echo "set -Ux $var \"$val\""
fi
done < "$in"