Adding imagemagick, adding script to take webcam photo and upload to website. Adding vimperatorrc
This commit is contained in:
parent
7fb0086e02
commit
8518041bc1
5 changed files with 13 additions and 0 deletions
7
bin/start_website_photos
Executable file
7
bin/start_website_photos
Executable file
|
|
@ -0,0 +1,7 @@
|
|||
#!/bin/bash
|
||||
while [ 1 ];
|
||||
do
|
||||
imagesnap - | convert - -resize "50%" jpeg:- | ssh dustinswan@dustinswan.org "cat > /srv/http/dustinswan.org/dustin.jpg"
|
||||
sleep 10;
|
||||
done
|
||||
|
||||
|
|
@ -25,6 +25,7 @@ brew install fish
|
|||
brew install ack
|
||||
brew install tree
|
||||
brew install imagesnap
|
||||
brew install imagemagick
|
||||
brew install openssl
|
||||
brew install openssh --with-brewed-openssl
|
||||
brew install ssh-copy-id
|
||||
|
|
|
|||
1
packages
1
packages
|
|
@ -36,6 +36,7 @@ var packages = [
|
|||
{ brew: "mosh", arch: "mosh" },
|
||||
{ brew: "tree", arch: "tree" },
|
||||
{ brew: "imagesnap" }, // TODO linux
|
||||
{ brew: "imagemagick", arch: "imagemagick" },
|
||||
|
||||
// Desktop Applications
|
||||
// Mac Only
|
||||
|
|
|
|||
|
|
@ -11,6 +11,7 @@ rm ~/.ruby-version; ln -s ~/dotfiles/ruby-version ~/.ruby-version
|
|||
rm ~/.tmux.conf; ln -s ~/dotfiles/tmux.conf ~/.tmux.conf
|
||||
rm ~/.vimrc; ln -s ~/dotfiles/vimrc ~/.vimrc
|
||||
rm -rf ~/.vim; ln -s ~/dotfiles/vim ~/.vim
|
||||
rm ~/.vimperatorrc; ln -s ~/dotfiles/vimperatorrc ~/.vimperatorrc
|
||||
|
||||
# TODO mac only
|
||||
rm ~/.slate.js; ln -s ~/dotfiles/slate.js ~/.slate.js
|
||||
|
|
|
|||
3
vimperatorrc
Normal file
3
vimperatorrc
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
:ignorekeys add mail\.google\.com
|
||||
:ignorekeys add google\.com/calendar
|
||||
:ignorekeys add feedly\.com
|
||||
Loading…
Add table
Add a link
Reference in a new issue