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
# this is a comment | |
[default] | |
foo = yes | |
bar = no | |
cam = maybe | |
var = 23 | |
prefix = /var/lib/ | |
dir = %(prefix)s/bar/ |
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
# python path | |
# | |
# byobu-config | |
# Copyright (C) 2008 Canonical Ltd. | |
# | |
# Authors: Nick Barcet <[email protected]> | |
# Dustin Kirkland <[email protected]> | |
# | |
# This program is free software: you can redistribute it and/or modify | |
# it under the terms of the GNU General Public License as published by |
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
#!/bin/bash | |
#AlarmClock | |
echo "enter amount of time to sleep" | |
read -e GETUPNOW | |
echo "enter 1 for beep, 2 for music" | |
read -e WHATKIND | |
if [ "$WHATKIND" = "1" ]; then | |
for i in $(seq 2000); do | |
beep | |
echo "Get Up!" |
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
#!/usr/bin/python | |
""" | |
This is a handy script to download the media from General Conference for | |
your own use. Execute this script with the appropriate options to download the | |
files you wish. | |
The only non-Python standard library dependency is BeautifulSoup. | |
Example invocation: |
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
# i3 desktop config | |
{ pkgs, ... }: | |
{ | |
environment.systemPackages = with pkgs; [ | |
dmenu # for app launcher | |
feh # for background image | |
i3 | |
i3lock # screen lock | |
i3status # sys info |
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." | |
(setq-default | |
;; List of additional paths where to look for configuration layers. | |
;; Paths must have a trailing slash (i.e. `~/.mycontribs/') | |
dotspacemacs-configuration-layer-path '() |