Skip to content

Instantly share code, notes, and snippets.

View tylevad's full-sized avatar

Ty Levad tylevad

  • Denver, CO
View GitHub Profile
@tylevad
tylevad / autoxine
Created May 30, 2013 05:59
Xrandr/Xinerama automation script
#!/bin/bash
# Ty Levad - tylevad@gmail.com
# autoxine
single=false
while [ $# -gt 0 ]; do
case "$1" in
-1|--one) single=true;;
esac
@tylevad
tylevad / xmonad.hs
Last active November 3, 2023 23:14
XMonad window manager config
{-# LANGUAGE TypeSynonymInstances, DeriveDataTypeable, MultiParamTypeClasses, NoMonomorphismRestriction #-}
-- Ty Levad - tylevad@gmail.com
-- xmonad.hs
-- Core Modules
import System.Exit
import XMonad hiding ((|||))
import qualified XMonad.StackSet as W
-- Action Modules