summaryrefslogtreecommitdiffstats
path: root/other
diff options
context:
space:
mode:
Diffstat (limited to 'other')
-rw-r--r--other/acpid/events/jack3
-rwxr-xr-xother/acpid/jack.sh17
-rwxr-xr-xother/emacs/setup.sh7
-rw-r--r--other/netctl/gnex14
-rw-r--r--other/netctl/home14
-rw-r--r--other/netctl/uni15
-rwxr-xr-xother/zsh/setup.sh12
7 files changed, 0 insertions, 82 deletions
diff --git a/other/acpid/events/jack b/other/acpid/events/jack
deleted file mode 100644
index 338957c..0000000
--- a/other/acpid/events/jack
+++ /dev/null
@@ -1,3 +0,0 @@
-# Pass all events to our one handler script
-event=jack/*
-action=/etc/acpi/jack.sh %e
diff --git a/other/acpid/jack.sh b/other/acpid/jack.sh
deleted file mode 100755
index e71d17d..0000000
--- a/other/acpid/jack.sh
+++ /dev/null
@@ -1,17 +0,0 @@
-#!/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:
diff --git a/other/emacs/setup.sh b/other/emacs/setup.sh
deleted file mode 100755
index 04f8bcf..0000000
--- a/other/emacs/setup.sh
+++ /dev/null
@@ -1,7 +0,0 @@
-#! /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
diff --git a/other/netctl/gnex b/other/netctl/gnex
deleted file mode 100644
index d6f9a48..0000000
--- a/other/netctl/gnex
+++ /dev/null
@@ -1,14 +0,0 @@
-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
diff --git a/other/netctl/home b/other/netctl/home
deleted file mode 100644
index d6f9a48..0000000
--- a/other/netctl/home
+++ /dev/null
@@ -1,14 +0,0 @@
-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
diff --git a/other/netctl/uni b/other/netctl/uni
deleted file mode 100644
index f1dbc6d..0000000
--- a/other/netctl/uni
+++ /dev/null
@@ -1,15 +0,0 @@
-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"'
-)
diff --git a/other/zsh/setup.sh b/other/zsh/setup.sh
deleted file mode 100755
index 2586ed9..0000000
--- a/other/zsh/setup.sh
+++ /dev/null
@@ -1,12 +0,0 @@
-#! /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