Skip to content

Instantly share code, notes, and snippets.

Avatar
🏠
Working from home

Betto Rodriguez ozzbetto

🏠
Working from home
View GitHub Profile
@ozzbetto
ozzbetto / plugins.md
Created March 20, 2022 02:19 — forked from Klerith/plugins.md
Flutter: Curso de Flutter - Instalaciones recomendadas
View plugins.md

Programas

git config --global user.name "Tu nombre"
git config --global user.email "Tu correo"
@ozzbetto
ozzbetto / git-alias.txt
Last active March 18, 2022 17:39 — forked from Klerith/git-alias.md
Useful Git Alias
View git-alias.txt
# 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
@ozzbetto
ozzbetto / mysql-gui.sh
Created June 5, 2021 02:54
Exclude mysql from dark mode in MacOs Catalina
View mysql-gui.sh
#!/bin/bash
defaults write com.oracle.workbench.MySQLWorkbench NSRequiresAquaSystemAppearance -bool yes
echo "OK - You have to restart the GUI now"
@ozzbetto
ozzbetto / scroll-refresh.sh
Last active November 14, 2021 14:45
Mouse scroll does no work in linux after suspend
View scroll-refresh.sh
#This command will refresh the scroll in Linux after suspend
#!/bin/bash
modprobe -r psmouse && modprobe psmouse