Pardon me while I have a strange interlude...

Jen hasn't smiled since March 24th. Well, a smile or two perhaps, but no laughter; not like before. No, things are definitely different now. Chilled, and tense; like frozen beef. I think the end is in sight, and they're all just going through the motions. Strange how the wind blows tonight.
context: https://twitter.com/oioiiooixiii/status/742822155713425409
context: https://youtu.be/T6RkPxawpY0?t=2m30s
context: ...

Increase monitor DPI with xrandr

# MoreDPI - increase resolution beyond monitor limits
alias moredpi="xrandr --output VGA1 --scale 1.25x1.25 --panning 1280x960"
In this case, the upper resolution limit of the monitor [VGA1] is 1024x768 (4:3). The screen is scaled down by 25% [--scale 1.25x1.25]. A "--panning" argument is given to allow this new area be interacted with.

To return the screen to default settings, the following alias is used:
# LessDPI - reset resolution to default
alias lessdpi="xrandr --output VGA1 --mode 1024x768 --scale 1x1 --panning 1024x768"
xrandr man: http://www.x.org/archive/X11R7.5/doc/man/man1/xrandr.1.html