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
GIT_PATH="~/gitlab" | |
cd $GIT_PATH && for repo in $(find . -type d -name ".git" | sed 's|/.git||'); do | |
cd "$repo" 2>/dev/null || continue | |
if [ -d .git ]; then | |
author=$(git config user.name 2>/dev/null || echo "unknown") | |
email=$(git config user.email 2>/dev/null || echo "unknown") | |
commit_count=0 | |
if [ "$author" != "unknown" ]; then | |
commit_count=$(git log --oneline --author="$author" 2>/dev/null | wc -l) |
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
[Desktop Entry] | |
Name=Cursor App | |
Type=Application | |
Categories=Utility;Development; | |
Exec=sh -c '/{HOME PATH HERE}/Applications/cursor/cursor.AppImage --no-sandbox; $SHELL' | |
Icon=/{HOME PATH HERE}/Applications/cursor/cursor.jpg |
OlderNewer