Skip to content

Instantly share code, notes, and snippets.

@DDAZZA
DDAZZA / gist:1669383
Created January 24, 2012 10:08
XFCE - dual screen config
xrandr --output HDMI1 --left-of VGA1
#!/bin/bash
# Simple script to check enviorment versions
osx_version="10.11.6"
dockermachine_version="0.7.0"
docker_version="1.11.2"
virtualbox_version="5.0.26"
echo -n 'Checking version of OSX... '
if sw_vers -productVersion | grep -q $osx_version;
@DDAZZA
DDAZZA / bundle_sizes.sh
Last active July 31, 2018 15:06
List all bundled gems and their sizes
#!/bin/bash
# List the gems in the current bundle and their sizes
bundle list --paths | xargs du -s | sort -n | awk '{ print $2 $4 }' | xargs du -sh