+++ /dev/null
-# Pass all events to our one handler script
-event=jack/*
-action=/etc/acpi/jack.sh %e
+++ /dev/null
-#!/bin/bash
-# acpi script that takes an entry for headphone actions
-
-case "$1" in
- jack/headphone)
- case "$3" in
- plug)
- echo "⮜" > /tmp/spkicon
- ;;
- unplug)
- echo "⮟" > /tmp/spkicon
- ;;
- esac
- ;;
-esac
-
-# vim:set ts=4 sw=4 ft=sh et:
+++ /dev/null
-#! /bin/bash
-
-# clone my prelude fork
-export PRELUDE_URL="https://github.com/aminb/prelude.git" && \
- curl -L https://github.com/bbatsov/prelude/raw/master/utils/installer.sh | sh
-cd $HOME/.emacs.d
-git remote set-url origin git@github.com:aminb/prelude.git
+++ /dev/null
-Description='A simple WPA encrypted wireless connection'
-Interface=wlp3s0
-Connection=wireless
-Security=wpa
-
-IP=dhcp
-
-ESSID='dedacted'
-# Prepend hexadecimal keys with \"
-# If your key starts with ", write it as '""<key>"'
-# See also: the section on special quoting rules in netctl.profile(5)
-Key=dedacted
-# Uncomment this if your ssid is hidden
-#Hidden=yes
+++ /dev/null
-Description='A simple WPA encrypted wireless connection'
-Interface=wlp3s0
-Connection=wireless
-Security=wpa
-
-IP=dhcp
-
-ESSID='dedacted'
-# Prepend hexadecimal keys with \"
-# If your key starts with ", write it as '""<key>"'
-# See also: the section on special quoting rules in netctl.profile(5)
-Key=dedacted
-# Uncomment this if your ssid is hidden
-#Hidden=yes
+++ /dev/null
-Description='York University Wireless'
-Interface=wlp3s0
-Connection=wireless
-Security=wpa-configsection
-IP=dhcp
-WPAConfigSection=(
- 'ssid="AirYorkPLUS"'
- 'ca_cert="/etc/ssl/certs/GlobalSign_Root_CA.pem"'
- 'key_mgmt=WPA-EAP'
- 'eap=PEAP'
- 'identity="dedacted"'
- 'password="dedacted"'
- 'priority=1'
- 'phase2="auth=MSCHAPV2"'
-)
+++ /dev/null
-#! /bin/zsh
-
-# clone my prezto fork
-git clone --recursive https://github.com/aminb/prezto.git $HOME/.zprezto
-cd $HOME/.zprezto
-git remote set-url origin git@github.com:aminb/prezto.git
-
-# setup the symlinks
-setopt EXTENDED_GLOB
-for rcfile in "${ZDOTDIR:-$HOME}"/.zprezto/runcoms/^README.md(.N); do
- ln -s "$rcfile" "${ZDOTDIR:-$HOME}/.${rcfile:t}"
-done