Skip to content

Instantly share code, notes, and snippets.

View marksabbath's full-sized avatar
🏠
Working from home

Marcos Antonio Schratzenstaller marksabbath

🏠
Working from home
View GitHub Profile

Keybase proof

I hereby claim:

  • I am marksabbath on github.
  • I am marksabbath (https://keybase.io/marksabbath) on keybase.
  • I have a public key ASAGiEOQkfSFJCYXF3iOoHQ8lq03aHCy88GZRYn-FAntGwo

To claim this, I am signing this object:

@marksabbath
marksabbath / marksabbath.zsh-theme
Created February 26, 2019 03:55
oh-my-zsh simple theme
_user=$(whoami | cut -d. -f1)
ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg[yellow]%}("
ZSH_THEME_GIT_PROMPT_SUFFIX=")%{$reset_color%}"
PROMPT='%{$fg[green]%}$_user%{$reset_color%}@%{$fg[green]%}%m:%{$fg[cyan]%}%~ %{$fg_bold[white]%}$(git_prompt_info)%{$fg_bold[white]%} %{$reset_color%}'
@marksabbath
marksabbath / fatorial.sh
Created April 2, 2016 23:05
Fatorial em bash
seq 1 3 | paste -s -d* - | bc