reboot: chezmoi

This commit is contained in:
Matthew Ryan Dillon 2023-01-25 22:13:24 -07:00
parent 1dfcb6068f
commit e8846ec72b
36 changed files with 5 additions and 1387 deletions

View file

@ -0,0 +1,8 @@
#!/usr/bin/env zsh
# If reattach-to-user-namespace is not available, just run the command.
if [ -n "$(command -v reattach-to-user-namespace)" ]; then
reattach-to-user-namespace $@
else
exec "$@"
fi