1
0

move wip stuff to wip

This commit is contained in:
dtb
2023-11-18 15:10:00 -07:00
parent b70d3c08a7
commit 4a7483a0ae
87 changed files with 0 additions and 37 deletions

15
wip/rss/pig_pen Executable file
View File

@@ -0,0 +1,15 @@
#!/bin/sh
set -e
str isvalue "$1" \
&& printf "Usage: %s\n" "$0" 1>&2 \
&& exit 64 \
|| str isvalue "$PIGPEN" \
&& printf "%s\n" "$PIGPEN" \
&& exit 0 \
|| str isvalue "$XDG_CONFIG_HOME" \
&& printf "%s\n" "$XDG_CONFIG_HOME" \
&& exit 0 \
|| printf "%s/.pigpen\n" "$HOME" \
&& exit 0 \
|| exit 1