Skip to content

Instantly share code, notes, and snippets.

View iampbernardo's full-sized avatar
🧉
Enjoying some mate and code

Pablo Bernardo iampbernardo

🧉
Enjoying some mate and code
View GitHub Profile
@iampbernardo
iampbernardo / custom-logseq.css
Last active May 11, 2022 18:16 — forked from QWxleA/custom-zk.css
Logseq custom CSS
a[data-ref="active"].tag {
background: var(--ls-primary-background-color);
background-size: 100%;
color: var(--ls-primary-text-color);
padding: 2px 5px 2px 5px;
font-size: 13px;
line-height: 1em;
font-weight: 500;
border-radius: 5px 5px 5px 5px;
@iampbernardo
iampbernardo / if_file_exists.sh
Created December 18, 2013 08:08
Bash scripting: Check if file exists
if [ -f /wherever/foo.txt ]
then
# Do stuff if foo.txt exists
fi