Initial Push.

This commit is contained in:
2025-08-15 17:44:24 -04:00
commit c9ff287462
62 changed files with 6649 additions and 0 deletions

14
home/.local/usr/bin/foot-smart Executable file
View File

@@ -0,0 +1,14 @@
#!/bin/sh
if footclient "$@" 2>/dev/null; then
exit 0
fi
exec foot --server &
sleep 0.2
exec footclient "$@" || {
echo "Failed to connect to foot server." >&2
exit 1
}