This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Layout component that queries for data | |
* with Gatsby's useStaticQuery component | |
* | |
* See: https://www.gatsbyjs.org/docs/use-static-query/ | |
*/ | |
import React from 'react'; | |
import PropTypes from 'prop-types'; | |
import { useStaticQuery, graphql } from 'gatsby'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react'; | |
import { Link } from 'gatsby'; | |
/* Material Components */ | |
import { Cell, Grid, Row } from '@material/react-layout-grid'; | |
import Layout from '../components/layout'; | |
import Image from '../components/image'; | |
import SEO from '../components/seo'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- mode: gitignore; *-* | |
############################################ | |
## Ignoring files generated for emacs ## | |
############################################ | |
*~ | |
\#*\# | |
/.emacs.desktop | |
/.emacs.desktop.lock | |
*.elc | |
auto-save-list |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
conky.config = { | |
------------------------------------- | |
-- Generic Settings | |
------------------------------------- | |
background=true, | |
update_interval=1, | |
double_buffer=true, | |
no_buffers=true, | |
imlib_cache_size=10, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# i3 config file v4 | |
# Please see http://i3wm.org/docs/userguide.html for a complete reference! | |
set $mod Mod4 | |
# setup color | |
set $col1 #277a6d | |
set $col2 #1c574d | |
set $col3 #dddddd | |
set $col4 #1199aa | |
set $col5 #1180aa |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
! ------------------------------------------------------------------------------ | |
! ROFI Settings | |
! ------------------------------------------------------------------------------ | |
! General | |
rofi.font: DejaVu Sans Mono 9 | |
rofi.fake-transparency: true | |
rofi.hide-scrollbar: true | |
rofi.bw: 2 | |
! Layout |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[global] ### Display ### | |
# Which monitor should the notifications be displayed on. | |
monitor = 0 | |
# Display notification on focused monitor. Possible modes are: | |
# mouse: follow mouse pointer | |
# keyboard: follow window with keyboard focus | |
# none: don't follow anything | |
# |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
source ~/antigen/antigen.zsh | |
# Update antigen | |
antigen update | |
# Load the oh-my-zsh library | |
antigen use oh-my-zsh | |
# Bundles from the default repo | |
antigen bundle git |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export TERM="xterm-256color" | |
# Development env vars | |
export BROWSER="chromium" | |
# Robomongo | |
export ROBOMONGO_DIR="$HOME/.robomongo/bin" | |
# Node Version Manager (NVM) | |
export NVM_DIR="$HOME/.nvm" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module.exports = { | |
siteMetadata: { | |
title: 'Gatsby Default Starter', | |
description: 'Kick off your next, great Gatsby project with this default starter. This barebones starter ships with the main Gatsby configuration files you might need.', | |
author: 'Edgar Talledos Robledos', | |
}, | |
plugins: [ | |
'gatsby-plugin-react-helmet', | |
{ | |
resolve: 'gatsby-source-filesystem', |