diff options
Diffstat (limited to '')
-rw-r--r-- | SUBSTS | 65 | ||||
-rwxr-xr-x | dm | 27 |
2 files changed, 0 insertions, 92 deletions
@@ -1,65 +0,0 @@ -# File format: -key value -# Path to sha256/sha256sum: -# /usr/bin/sha256sum on Kubuntu/Debian -# /sbin/sha256 on FreeBSD -# /bin/sha256 on OpenBSD -SHA256 /usr/sbin/sha256 -# Disable GPG decryption of sensitive files. Must be True to disable, enabled -# for all other values -GPG_DISABLED False -# Do we build emacs? Must be True to disable. -EMACS_DISABLED True -# Mail passwords -GMAIL_PASS secret -GMAIL_mailx_PASS secret -QUEENSU_PASS secret -LOCAL_PASS secret -RYANAKCA_PASS secret -CMU_PASS secret -SOCS_PASS secret -# xmonad -XMONAD_DZEN_W 808 -XMONAD_DZEN_X 114 -XMONAD_DZEN_Y 0 -# screen dimensions / arandr -SCREENLAYOUT zeta-home -# Locale -LOCALE en_CA.UTF-8 - -# colour of hostname in zsh prompt -ZSH_HOST_COLOUR Green - -# colour of screenrc hardstatus' hostname -# See https://www.gnu.org/software/screen/manual/html_node/String-Escapes.html -SCREEN_HOST_COLOUR G - -# Enable keychain? If so, set to secret key names, e.g., id_rsa id_ecdsa -# Otherwise, delete everything after N -KEYCHAIN id_rsa - -# Path to SSL certs for mail, etc. -# /etc/ssl/cert.pem on OpenBSD -# /etc/ssl/certs/ca-certificates.crt on Debian -SSL_CERTS /etc/ssl/certs/ca-certificates.crt - -LOCALHOST zeta.rak.ac - -# REMOTE_GMAIL or LOCAL_GMAIL -IMAPFILTER_LOCAL False - -# pgpewrap -# /usr/local/bin/pgpewrap on OpenBSD -# /usr/lib/mutt/pgpewrap on Debian -PGPEWRAP_BINARY /usr/lib/mutt/pgpewrap - -# Start pulse? -# Set to True to enable, anything else otherwise -PULSE True - -HOMEDIR /home/rak - -BUILD_FONTS True - -MBUSER ryanakca -MBPASS secret @@ -1,27 +0,0 @@ -#!/bin/sh - -set -e - -git config core.hooksPath .githooks - -if [ ! -f SUBSTS.local ]; then - echo "Please create the file SUBSTS.local first." - exit 1; -fi - -chmod 600 SUBSTS.local - -case `uname` in - Linux|Darwin) - make --version | grep "GNU Make" > /dev/null 2>&1 || { echo "Please install GNU Make"; exit 1; } - MAKE=`command -v make` - ;; - *) - command -v gmake > /dev/null 2>&1 || { echo "Please install GNU Make"; exit 1; } - MAKE=`command -v gmake` - ;; -esac - -${MAKE} -f Makefile $@ - -# vim:ft=sh |