update dotfiles

This commit is contained in:
David Aizenberg
2025-11-26 23:17:33 +01:00
parent 6814e099ad
commit 80e865f496
46 changed files with 1549 additions and 1 deletions

12
legacy/scripts/docker.sh Executable file
View File

@@ -0,0 +1,12 @@
#!/bin/bash
# Number of docker containers running
count=$(docker ps -q | wc -l | sed -r 's/^0$//g')
if [ "$count" = '' ]; then
count=0
fi
echo "🐳: $count"