Programas
git config --global user.name "Tu nombre"
git config --global user.email "Tu correo"
# Log | |
git config --global alias.lg "log --graph --abbrev-commit --decorate --format=format:'%C(bold blue)%h%C(reset) - %C(bold green)(%ar)%C(reset) %C(white)%s%C(reset) %C(dim white)- %an%C(reset)%C(bold yellow)%d%C(reset)' --all" | |
# Status | |
git config --global alias.s status --short | |
# Alternativa útil de status | |
git config --global alias.s status -sb |
#!/bin/bash | |
defaults write com.oracle.workbench.MySQLWorkbench NSRequiresAquaSystemAppearance -bool yes | |
echo "OK - You have to restart the GUI now" |
#This command will refresh the scroll in Linux after suspend | |
#!/bin/bash | |
modprobe -r psmouse && modprobe psmouse |