Created
June 7, 2025 15:13
-
-
Save Ikke/d7d3833d4a69d09d2014c511de4ebb67 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
while true; | |
do | |
ST=$(git --no-optional-locks -c color.ui=always status -sb -uall); | |
tput reset; | |
echo -e "$ST" | |
inotifywait \ | |
-e modify \ | |
-e moved_to \ | |
-e moved_from \ | |
-e move \ | |
-e move_self \ | |
-e create \ | |
-e delete \ | |
-e delete_self \ | |
-qqr . .git/index | |
sleep 0.2 | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment