diff options
author | William Carroll <wpcarro@gmail.com> | 2016-08-01T17·22-0400 |
---|---|---|
committer | William Carroll <wpcarro@gmail.com> | 2016-08-01T17·22-0400 |
commit | 9b714a32bb2e0db67525ed0756c766ccd0d14d6f (patch) | |
tree | ba7c8853932e4366dd8a59dde6a3abb101670607 | |
parent | e4a0705ab3c1e08db27010a418006753d1d498f2 (diff) |
Adds cron job and brew installed packages
-rw-r--r-- | brew_packages.txt | 26 | ||||
-rwxr-xr-x | clean_downloads_folder.sh | 5 |
2 files changed, 31 insertions, 0 deletions
diff --git a/brew_packages.txt b/brew_packages.txt new file mode 100644 index 000000000000..e9c365d70666 --- /dev/null +++ b/brew_packages.txt @@ -0,0 +1,26 @@ +bash-completion +bind +chromedriver +cmatrix +coreutils +cowsay +gdbm +gettext +httpie +jq +json-c +libstfl +newsbeuter +oniguruma +openssl +pidof +pup +python +readline +recode +shc +sqlite +tree +wget +xz +zsh-syntax-highlighting diff --git a/clean_downloads_folder.sh b/clean_downloads_folder.sh new file mode 100755 index 000000000000..d29570d717a9 --- /dev/null +++ b/clean_downloads_folder.sh @@ -0,0 +1,5 @@ +#!/usr/bin/env bash + +# delete files in ~/Downloads +rm -r ~/Downloads/* + |