Skip to content

Instantly share code, notes, and snippets.

@tybenz
Created June 5, 2013 18:22
Show Gist options
  • Save tybenz/5716005 to your computer and use it in GitHub Desktop.
Save tybenz/5716005 to your computer and use it in GitHub Desktop.
term
#!/bin/bash
hour=`date "+%k"`
if [ "$hour" -ge "$TERMINATOR_MORNING" ] && [ "$hour" -lt "$TERMINATOR_EVENING" ];then
terminator -p light
else
terminator -p default
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment