Skip to content

Instantly share code, notes, and snippets.

View pblanton's full-sized avatar
💭
All your base, ba, er, um... you know the thing.

Phillip H. Blanton pblanton

💭
All your base, ba, er, um... you know the thing.
View GitHub Profile
@pblanton
pblanton / xrandr.sh
Last active December 16, 2020 14:30 — forked from chirag64/xrandr.sh
!/bin/bash
#If no argument is specified, ask for it and exit
if [[ -z "$@" ]];
then
echo "An argument is needed to run this script. For instance..."
echo ">./xrandr.sh 3840 2160 60"
echo "will set a resolution of 4k @ 60 Hz."
exit
else
arg="$@"