2024-08-10 15:23:47 +00:00
|
|
|
{pkgs, ...}: {
|
|
|
|
home-manager.users.buffet = {
|
|
|
|
home.packages = [
|
|
|
|
(pkgs.writeScriptBin "git-entr" ''
|
2024-08-27 16:52:59 +00:00
|
|
|
#!/bin/sh
|
2024-08-10 15:23:47 +00:00
|
|
|
|
2024-08-27 16:52:59 +00:00
|
|
|
echo "looping entr. press ctrl-c twice to exit"
|
2024-08-10 15:23:47 +00:00
|
|
|
|
2024-08-27 16:52:59 +00:00
|
|
|
while sleep 1; do
|
|
|
|
git ls-files -cdmo --exclude-standard | entr -d "$@"
|
|
|
|
done
|
2024-08-10 15:23:47 +00:00
|
|
|
'')
|
|
|
|
];
|
|
|
|
};
|
|
|
|
}
|