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 | |
# Ty Levad - [email protected] | |
# autoxine | |
single=false | |
while [ $# -gt 0 ]; do | |
case "$1" in | |
-1|--one) single=true;; | |
esac |
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
{-# LANGUAGE TypeSynonymInstances, DeriveDataTypeable, MultiParamTypeClasses, NoMonomorphismRestriction #-} | |
-- Ty Levad - [email protected] | |
-- xmonad.hs | |
-- Core Modules | |
import System.Exit | |
import XMonad hiding ((|||)) | |
import qualified XMonad.StackSet as W | |
-- Action Modules |