This file contains 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: emacs-lisp -*- | |
;; This file is loaded by Spacemacs at startup. | |
;; It must be stored in your home directory. | |
(defun dotspacemacs/layers () | |
"Configuration Layers declaration. | |
You should not put any user code in this function besides modifying the variable | |
values." | |
(setq-default | |
;; Base distribution to use. This is a layer contained in the directory |
This file contains 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 re | |
import sys | |
import os | |
from os.path import join, isfile | |
from datetime import date | |
TODOS_LOCATION = '/home/cactus/Org/todos' | |
ARCHIVE_LOCATION = '/home/cactus/Org/todos/archive' | |
WEEK_DAYS = {0: 'lun', 1: 'mar', 2: 'mié', | |
3: 'jue', 4: 'vie', 5: 'sáb', 6: 'dom'} |
This file contains 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 = { | |
alignment = 'top_right', | |
background = true, | |
border_margin = 5, | |
border_width = 5, | |
cpu_avg_samples = 2, | |
default_color = 'e1e1e1', | |
default_outline_color = 000000, | |
default_shade_color = 000000, | |
double_buffer = true, |