Last active
March 26, 2018 21:50
-
-
Save DestyNova/597c419821e6aa48ab2e5b2f1472a42f to your computer and use it in GitHub Desktop.
Handy aliases/miniscripts (in zsh format)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# load existing pre-zsh profile | |
emulate sh -c '. ~/.profile' | |
# make a directory and cd into it | |
mkd () { mkdir $1 && cd $1 } | |
# verbally remind me of something after N minutes | |
# Examples: | |
# $ remind_after 5 tea | |
# $ remind_after 25 "pomodoro break" | |
# $ remind_after 60 "that's enough Youtube videos for now" | |
remind_after () { echo "espeak \"$2\"" | at now + $1 minutes } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment