Skip to content

Instantly share code, notes, and snippets.

View ChristianGrimberg's full-sized avatar
:octocat:
Happy coding!

Christian Grimberg ChristianGrimberg

:octocat:
Happy coding!
  • Avellaneda, Buenos Aires, Argentina
View GitHub Profile
@ChristianGrimberg
ChristianGrimberg / .conkyrc
Last active July 5, 2022 15:36
My conky config for a single monitor (2160 x 1440)
--[[
Author: @ChristianGrimberg
Description: Dark theme for a single monitor (2160 x 1440)
]]
conky.config = {
-- window
alignment = 'top_right',
gap_x = 0,
gap_y = 0,
@ChristianGrimberg
ChristianGrimberg / .bashrc
Last active July 10, 2025 15:47
Sharing GPG Key and Configuration Agent in Windows to WSL and Visual Studio Dev Containers
# enable GPG signing
export GPG_TTY=$(tty)
if [ ! -f ~/.gnupg/S.gpg-agent ]; then
eval $( gpg-agent --daemon --options ~/.gnupg/gpg-agent.conf &>/dev/null )
fi
export GPG_AGENT_INFO=${HOME}/.gnupg/S.gpg-agent:0:1
@ChristianGrimberg
ChristianGrimberg / SUPERLOG.md
Last active July 23, 2019 20:32
Git alias to see better git log from UNIX terminal

Git superlog

  1. Execute this command to see better git log from a repo:
git config --global alias.superlog "log --graph --abbrev-commit --decorate --date=relative --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 --stat"
  1. Use git superlog in a repo to see how it works.