Skip to content

Instantly share code, notes, and snippets.

View cesarrodrig's full-sized avatar

Cesar Rodriguez cesarrodrig

View GitHub Profile
/* Based on https://azlen.github.io/roam-themes/zenith.css */
:root {
--page-width: 616px;
}
html, body, .roam-app {
background-color: var(--bg-color) !important;
overflow: hidden !important;
}
@cesarrodrig
cesarrodrig / metalias.sh
Created June 9, 2016 15:28
Alias to create alias.
make_alias() {
echo "alias $1=\"$2\"" >> ~/.zshrc
}
# Ex: mkalias sayhi "say hi”
alias mkalias=make_alias