Skip to content

Instantly share code, notes, and snippets.

@astubbs
Created September 28, 2015 08:55
Show Gist options
  • Save astubbs/8a9d0c334044264d1b5b to your computer and use it in GitHub Desktop.
Save astubbs/8a9d0c334044264d1b5b to your computer and use it in GitHub Desktop.
Fish function to sleep your computer in x seconds
function sleepin
echo "Sleeping in $argv minutes..."
set rest (math "$argv*60")
sleep $rest
#echo "Sleeping now..."
pmset sleepnow
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment