├── .config └── karabiner │ └── karabiner.json ├── .gitignore ├── Brewfile ├── LICENSE ├── README.textile ├── agignore ├── aliases ├── audio.opml ├── autotest ├── bash_profile ├── bashrc ├── bin ├── add_files ├── append ├── archive ├── backup ├── bluesky_post.sh ├── burn ├── cb ├── clean_podcasts ├── configure_remote_system ├── convert_to_mp3 ├── date_time ├── delete ├── download_podcasts ├── email ├── get_spotify_playlist ├── git-host ├── group_rename ├── guard_autocommit ├── guard_open ├── host_space ├── hosts ├── indent_xml ├── interpolate ├── ips ├── linux │ └── web ├── list_space ├── log ├── lower_case ├── make_bin_executable ├── markdown_code ├── mastodon_post.sh ├── new_diff ├── note ├── old_diff ├── one_line ├── osx │ ├── clipboard_to_jpeg.sh │ ├── fast_forward │ ├── finder_by_date │ ├── finder_by_kind │ ├── finder_by_name │ ├── finder_by_size │ ├── make_bookmark │ ├── make_launcher │ ├── maximize_window.scpt │ ├── minimize_window.scpt │ ├── next_track │ ├── pause │ ├── play │ ├── play_downloaded_audio │ ├── previous_track │ ├── quit.scpt │ ├── rate_current_track │ ├── restore_window.scpt │ ├── rewind │ ├── search │ ├── tell │ ├── tell_process │ └── url ├── phone ├── podcatcher ├── prepend ├── push ├── put ├── quote ├── rebuild_db.py ├── reminder ├── rgrep ├── ruby_shell ├── run_erb ├── shorthand ├── shrink_url ├── split_into ├── subfolders_by_date_created ├── subfolders_by_date_modified ├── subfolders_by_exif_date ├── sync_podcasts ├── temp_java ├── time_lapse_video ├── tmux2 ├── tmux3 ├── unwrap ├── upper_case ├── web_service_client ├── work_note ├── work_reminder ├── wrap └── write_space ├── bootstrap ├── link_cloud_storage.sh └── link_dotfiles.sh ├── chrome └── extensions │ ├── USAGE.md │ └── blank-new-tab │ ├── manifest.json │ ├── newtab.css │ └── newtab.html ├── crontab ├── gitconfig ├── gitexcludes ├── gitignore ├── inputrc ├── irbrc ├── lynx.cfg ├── multicdrc ├── osx ├── Users │ └── me │ │ └── Library │ │ └── KeyBindings │ │ └── DefaultKeyBinding.dict ├── bootstrap │ └── configure.sh ├── iterm │ ├── com.googlecode.iterm2.plist │ └── emacs.itermkeymap └── provision_osx_computer.rb ├── profile ├── pryrc ├── rp5rc ├── rspec ├── ruby └── utility │ ├── Gemfile │ ├── Gemfile.lock │ ├── Guardfile │ ├── Rakefile │ ├── lib │ ├── utility.rb │ └── utility │ │ ├── all.rb │ │ ├── email.rb │ │ ├── enhancements.rb │ │ ├── filter.rb │ │ ├── launchers │ │ └── osx.rb │ │ ├── logging.rb │ │ ├── main.rb │ │ ├── shell.rb │ │ ├── storage.rb │ │ └── version.rb │ ├── spec │ ├── models │ │ └── rateable.rb │ ├── spec_helper.rb │ └── utility │ │ ├── enhancements_spec.rb │ │ └── launchers │ │ └── osx_spec.rb │ └── utility.gemspec ├── slate ├── ssh └── config ├── tmux.conf ├── todo-txt-sh ├── actions │ └── edit ├── todo.cfg ├── todo_book.cfg └── todo_work.cfg ├── windows └── provision_windows_computer.rb ├── xscreensaver ├── zprofile └── zshrc /.config/karabiner/karabiner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaymcgavren/dotfiles/HEAD/.config/karabiner/karabiner.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaymcgavren/dotfiles/HEAD/.gitignore -------------------------------------------------------------------------------- /Brewfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaymcgavren/dotfiles/HEAD/Brewfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaymcgavren/dotfiles/HEAD/LICENSE -------------------------------------------------------------------------------- /README.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaymcgavren/dotfiles/HEAD/README.textile -------------------------------------------------------------------------------- /agignore: -------------------------------------------------------------------------------- 1 | db/*.sql 2 | *min.js 3 | *.pdf 4 | -------------------------------------------------------------------------------- /aliases: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaymcgavren/dotfiles/HEAD/aliases -------------------------------------------------------------------------------- /audio.opml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaymcgavren/dotfiles/HEAD/audio.opml -------------------------------------------------------------------------------- /autotest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaymcgavren/dotfiles/HEAD/autotest -------------------------------------------------------------------------------- /bash_profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaymcgavren/dotfiles/HEAD/bash_profile -------------------------------------------------------------------------------- /bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaymcgavren/dotfiles/HEAD/bashrc -------------------------------------------------------------------------------- /bin/add_files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaymcgavren/dotfiles/HEAD/bin/add_files -------------------------------------------------------------------------------- /bin/append: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaymcgavren/dotfiles/HEAD/bin/append -------------------------------------------------------------------------------- /bin/archive: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaymcgavren/dotfiles/HEAD/bin/archive -------------------------------------------------------------------------------- /bin/backup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaymcgavren/dotfiles/HEAD/bin/backup -------------------------------------------------------------------------------- /bin/bluesky_post.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaymcgavren/dotfiles/HEAD/bin/bluesky_post.sh -------------------------------------------------------------------------------- /bin/burn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaymcgavren/dotfiles/HEAD/bin/burn -------------------------------------------------------------------------------- /bin/cb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaymcgavren/dotfiles/HEAD/bin/cb -------------------------------------------------------------------------------- /bin/clean_podcasts: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | find ~/Downloads/podcasts -type f -iname "*.mp3" -exec rm "{}" \; -------------------------------------------------------------------------------- /bin/configure_remote_system: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaymcgavren/dotfiles/HEAD/bin/configure_remote_system -------------------------------------------------------------------------------- /bin/convert_to_mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaymcgavren/dotfiles/HEAD/bin/convert_to_mp3 -------------------------------------------------------------------------------- /bin/date_time: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | date "+%Y-%m-%d_%H%M%S" | tr -d '\n' 3 | -------------------------------------------------------------------------------- /bin/delete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaymcgavren/dotfiles/HEAD/bin/delete -------------------------------------------------------------------------------- /bin/download_podcasts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaymcgavren/dotfiles/HEAD/bin/download_podcasts -------------------------------------------------------------------------------- /bin/email: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaymcgavren/dotfiles/HEAD/bin/email -------------------------------------------------------------------------------- /bin/get_spotify_playlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaymcgavren/dotfiles/HEAD/bin/get_spotify_playlist -------------------------------------------------------------------------------- /bin/git-host: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaymcgavren/dotfiles/HEAD/bin/git-host -------------------------------------------------------------------------------- /bin/group_rename: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaymcgavren/dotfiles/HEAD/bin/group_rename -------------------------------------------------------------------------------- /bin/guard_autocommit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaymcgavren/dotfiles/HEAD/bin/guard_autocommit -------------------------------------------------------------------------------- /bin/guard_open: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaymcgavren/dotfiles/HEAD/bin/guard_open -------------------------------------------------------------------------------- /bin/host_space: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaymcgavren/dotfiles/HEAD/bin/host_space -------------------------------------------------------------------------------- /bin/hosts: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | edit /etc/hosts 3 | -------------------------------------------------------------------------------- /bin/indent_xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaymcgavren/dotfiles/HEAD/bin/indent_xml -------------------------------------------------------------------------------- /bin/interpolate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaymcgavren/dotfiles/HEAD/bin/interpolate -------------------------------------------------------------------------------- /bin/ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaymcgavren/dotfiles/HEAD/bin/ips -------------------------------------------------------------------------------- /bin/linux/web: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | google-chrome 2>>$HOME/stderr.log & 3 | -------------------------------------------------------------------------------- /bin/list_space: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaymcgavren/dotfiles/HEAD/bin/list_space -------------------------------------------------------------------------------- /bin/log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaymcgavren/dotfiles/HEAD/bin/log -------------------------------------------------------------------------------- /bin/lower_case: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env ruby 2 | 3 | STDIN.each{|l| puts l.downcase} 4 | -------------------------------------------------------------------------------- /bin/make_bin_executable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaymcgavren/dotfiles/HEAD/bin/make_bin_executable -------------------------------------------------------------------------------- /bin/markdown_code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaymcgavren/dotfiles/HEAD/bin/markdown_code -------------------------------------------------------------------------------- /bin/mastodon_post.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaymcgavren/dotfiles/HEAD/bin/mastodon_post.sh -------------------------------------------------------------------------------- /bin/new_diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaymcgavren/dotfiles/HEAD/bin/new_diff -------------------------------------------------------------------------------- /bin/note: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaymcgavren/dotfiles/HEAD/bin/note -------------------------------------------------------------------------------- /bin/old_diff: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | cat > $HOME/.old_diff 3 | -------------------------------------------------------------------------------- /bin/one_line: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaymcgavren/dotfiles/HEAD/bin/one_line -------------------------------------------------------------------------------- /bin/osx/clipboard_to_jpeg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaymcgavren/dotfiles/HEAD/bin/osx/clipboard_to_jpeg.sh -------------------------------------------------------------------------------- /bin/osx/fast_forward: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaymcgavren/dotfiles/HEAD/bin/osx/fast_forward -------------------------------------------------------------------------------- /bin/osx/finder_by_date: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaymcgavren/dotfiles/HEAD/bin/osx/finder_by_date -------------------------------------------------------------------------------- /bin/osx/finder_by_kind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaymcgavren/dotfiles/HEAD/bin/osx/finder_by_kind -------------------------------------------------------------------------------- /bin/osx/finder_by_name: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaymcgavren/dotfiles/HEAD/bin/osx/finder_by_name -------------------------------------------------------------------------------- /bin/osx/finder_by_size: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaymcgavren/dotfiles/HEAD/bin/osx/finder_by_size -------------------------------------------------------------------------------- /bin/osx/make_bookmark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaymcgavren/dotfiles/HEAD/bin/osx/make_bookmark -------------------------------------------------------------------------------- /bin/osx/make_launcher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaymcgavren/dotfiles/HEAD/bin/osx/make_launcher -------------------------------------------------------------------------------- /bin/osx/maximize_window.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaymcgavren/dotfiles/HEAD/bin/osx/maximize_window.scpt -------------------------------------------------------------------------------- /bin/osx/minimize_window.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaymcgavren/dotfiles/HEAD/bin/osx/minimize_window.scpt -------------------------------------------------------------------------------- /bin/osx/next_track: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaymcgavren/dotfiles/HEAD/bin/osx/next_track -------------------------------------------------------------------------------- /bin/osx/pause: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaymcgavren/dotfiles/HEAD/bin/osx/pause -------------------------------------------------------------------------------- /bin/osx/play: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaymcgavren/dotfiles/HEAD/bin/osx/play -------------------------------------------------------------------------------- /bin/osx/play_downloaded_audio: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | /Applications/VLC.app/Contents/MacOS/VLC "$HOME/Downloads/audio" 3 | -------------------------------------------------------------------------------- /bin/osx/previous_track: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaymcgavren/dotfiles/HEAD/bin/osx/previous_track -------------------------------------------------------------------------------- /bin/osx/quit.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaymcgavren/dotfiles/HEAD/bin/osx/quit.scpt -------------------------------------------------------------------------------- /bin/osx/rate_current_track: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaymcgavren/dotfiles/HEAD/bin/osx/rate_current_track -------------------------------------------------------------------------------- /bin/osx/restore_window.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaymcgavren/dotfiles/HEAD/bin/osx/restore_window.scpt -------------------------------------------------------------------------------- /bin/osx/rewind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaymcgavren/dotfiles/HEAD/bin/osx/rewind -------------------------------------------------------------------------------- /bin/osx/search: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | open "http://www.google.com/search?q=$(echo $@ | sed 's/\ /+/g')&num=100" 3 | -------------------------------------------------------------------------------- /bin/osx/tell: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaymcgavren/dotfiles/HEAD/bin/osx/tell -------------------------------------------------------------------------------- /bin/osx/tell_process: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaymcgavren/dotfiles/HEAD/bin/osx/tell_process -------------------------------------------------------------------------------- /bin/osx/url: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | open "$@" -------------------------------------------------------------------------------- /bin/phone: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaymcgavren/dotfiles/HEAD/bin/phone -------------------------------------------------------------------------------- /bin/podcatcher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaymcgavren/dotfiles/HEAD/bin/podcatcher -------------------------------------------------------------------------------- /bin/prepend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaymcgavren/dotfiles/HEAD/bin/prepend -------------------------------------------------------------------------------- /bin/push: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaymcgavren/dotfiles/HEAD/bin/push -------------------------------------------------------------------------------- /bin/put: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | scp -r "$@" 3 | -------------------------------------------------------------------------------- /bin/quote: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | wrap 60 | prepend "> " -------------------------------------------------------------------------------- /bin/rebuild_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaymcgavren/dotfiles/HEAD/bin/rebuild_db.py -------------------------------------------------------------------------------- /bin/reminder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaymcgavren/dotfiles/HEAD/bin/reminder -------------------------------------------------------------------------------- /bin/rgrep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaymcgavren/dotfiles/HEAD/bin/rgrep -------------------------------------------------------------------------------- /bin/ruby_shell: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | irb -rutility/shell -------------------------------------------------------------------------------- /bin/run_erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaymcgavren/dotfiles/HEAD/bin/run_erb -------------------------------------------------------------------------------- /bin/shorthand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaymcgavren/dotfiles/HEAD/bin/shorthand -------------------------------------------------------------------------------- /bin/shrink_url: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | curl "http://is.gd/api.php?longurl=$(echo $@ | sed 's/\ /+/g')" 3 | -------------------------------------------------------------------------------- /bin/split_into: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaymcgavren/dotfiles/HEAD/bin/split_into -------------------------------------------------------------------------------- /bin/subfolders_by_date_created: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaymcgavren/dotfiles/HEAD/bin/subfolders_by_date_created -------------------------------------------------------------------------------- /bin/subfolders_by_date_modified: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaymcgavren/dotfiles/HEAD/bin/subfolders_by_date_modified -------------------------------------------------------------------------------- /bin/subfolders_by_exif_date: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaymcgavren/dotfiles/HEAD/bin/subfolders_by_exif_date -------------------------------------------------------------------------------- /bin/sync_podcasts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaymcgavren/dotfiles/HEAD/bin/sync_podcasts -------------------------------------------------------------------------------- /bin/temp_java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaymcgavren/dotfiles/HEAD/bin/temp_java -------------------------------------------------------------------------------- /bin/time_lapse_video: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaymcgavren/dotfiles/HEAD/bin/time_lapse_video -------------------------------------------------------------------------------- /bin/tmux2: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | tmux new-session \; split-window -h \; attach 3 | -------------------------------------------------------------------------------- /bin/tmux3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaymcgavren/dotfiles/HEAD/bin/tmux3 -------------------------------------------------------------------------------- /bin/unwrap: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env ruby 2 | puts STDIN.map{|l| l.chomp}.join(' ') 3 | -------------------------------------------------------------------------------- /bin/upper_case: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env ruby 2 | 3 | STDIN.each{|l| puts l.upcase} 4 | -------------------------------------------------------------------------------- /bin/web_service_client: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaymcgavren/dotfiles/HEAD/bin/web_service_client -------------------------------------------------------------------------------- /bin/work_note: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaymcgavren/dotfiles/HEAD/bin/work_note -------------------------------------------------------------------------------- /bin/work_reminder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaymcgavren/dotfiles/HEAD/bin/work_reminder -------------------------------------------------------------------------------- /bin/wrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaymcgavren/dotfiles/HEAD/bin/wrap -------------------------------------------------------------------------------- /bin/write_space: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaymcgavren/dotfiles/HEAD/bin/write_space -------------------------------------------------------------------------------- /bootstrap/link_cloud_storage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaymcgavren/dotfiles/HEAD/bootstrap/link_cloud_storage.sh -------------------------------------------------------------------------------- /bootstrap/link_dotfiles.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaymcgavren/dotfiles/HEAD/bootstrap/link_dotfiles.sh -------------------------------------------------------------------------------- /chrome/extensions/USAGE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaymcgavren/dotfiles/HEAD/chrome/extensions/USAGE.md -------------------------------------------------------------------------------- /chrome/extensions/blank-new-tab/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaymcgavren/dotfiles/HEAD/chrome/extensions/blank-new-tab/manifest.json -------------------------------------------------------------------------------- /chrome/extensions/blank-new-tab/newtab.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaymcgavren/dotfiles/HEAD/chrome/extensions/blank-new-tab/newtab.css -------------------------------------------------------------------------------- /chrome/extensions/blank-new-tab/newtab.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaymcgavren/dotfiles/HEAD/chrome/extensions/blank-new-tab/newtab.html -------------------------------------------------------------------------------- /crontab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaymcgavren/dotfiles/HEAD/crontab -------------------------------------------------------------------------------- /gitconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaymcgavren/dotfiles/HEAD/gitconfig -------------------------------------------------------------------------------- /gitexcludes: -------------------------------------------------------------------------------- 1 | .\#* 2 | .DS_Store 3 | .rvmrc 4 | nohup.out 5 | TAGS 6 | -------------------------------------------------------------------------------- /gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaymcgavren/dotfiles/HEAD/gitignore -------------------------------------------------------------------------------- /inputrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaymcgavren/dotfiles/HEAD/inputrc -------------------------------------------------------------------------------- /irbrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaymcgavren/dotfiles/HEAD/irbrc -------------------------------------------------------------------------------- /lynx.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaymcgavren/dotfiles/HEAD/lynx.cfg -------------------------------------------------------------------------------- /multicdrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaymcgavren/dotfiles/HEAD/multicdrc -------------------------------------------------------------------------------- /osx/Users/me/Library/KeyBindings/DefaultKeyBinding.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaymcgavren/dotfiles/HEAD/osx/Users/me/Library/KeyBindings/DefaultKeyBinding.dict -------------------------------------------------------------------------------- /osx/bootstrap/configure.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaymcgavren/dotfiles/HEAD/osx/bootstrap/configure.sh -------------------------------------------------------------------------------- /osx/iterm/com.googlecode.iterm2.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaymcgavren/dotfiles/HEAD/osx/iterm/com.googlecode.iterm2.plist -------------------------------------------------------------------------------- /osx/iterm/emacs.itermkeymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaymcgavren/dotfiles/HEAD/osx/iterm/emacs.itermkeymap -------------------------------------------------------------------------------- /osx/provision_osx_computer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaymcgavren/dotfiles/HEAD/osx/provision_osx_computer.rb -------------------------------------------------------------------------------- /profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaymcgavren/dotfiles/HEAD/profile -------------------------------------------------------------------------------- /pryrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaymcgavren/dotfiles/HEAD/pryrc -------------------------------------------------------------------------------- /rp5rc: -------------------------------------------------------------------------------- 1 | PROCESSING_ROOT: ~/Applications/Processing.app/Contents/Java 2 | -------------------------------------------------------------------------------- /rspec: -------------------------------------------------------------------------------- 1 | --color 2 | -------------------------------------------------------------------------------- /ruby/utility/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaymcgavren/dotfiles/HEAD/ruby/utility/Gemfile -------------------------------------------------------------------------------- /ruby/utility/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaymcgavren/dotfiles/HEAD/ruby/utility/Gemfile.lock -------------------------------------------------------------------------------- /ruby/utility/Guardfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaymcgavren/dotfiles/HEAD/ruby/utility/Guardfile -------------------------------------------------------------------------------- /ruby/utility/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaymcgavren/dotfiles/HEAD/ruby/utility/Rakefile -------------------------------------------------------------------------------- /ruby/utility/lib/utility.rb: -------------------------------------------------------------------------------- 1 | require 'utility/all' -------------------------------------------------------------------------------- /ruby/utility/lib/utility/all.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaymcgavren/dotfiles/HEAD/ruby/utility/lib/utility/all.rb -------------------------------------------------------------------------------- /ruby/utility/lib/utility/email.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaymcgavren/dotfiles/HEAD/ruby/utility/lib/utility/email.rb -------------------------------------------------------------------------------- /ruby/utility/lib/utility/enhancements.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaymcgavren/dotfiles/HEAD/ruby/utility/lib/utility/enhancements.rb -------------------------------------------------------------------------------- /ruby/utility/lib/utility/filter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaymcgavren/dotfiles/HEAD/ruby/utility/lib/utility/filter.rb -------------------------------------------------------------------------------- /ruby/utility/lib/utility/launchers/osx.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaymcgavren/dotfiles/HEAD/ruby/utility/lib/utility/launchers/osx.rb -------------------------------------------------------------------------------- /ruby/utility/lib/utility/logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaymcgavren/dotfiles/HEAD/ruby/utility/lib/utility/logging.rb -------------------------------------------------------------------------------- /ruby/utility/lib/utility/main.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaymcgavren/dotfiles/HEAD/ruby/utility/lib/utility/main.rb -------------------------------------------------------------------------------- /ruby/utility/lib/utility/shell.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaymcgavren/dotfiles/HEAD/ruby/utility/lib/utility/shell.rb -------------------------------------------------------------------------------- /ruby/utility/lib/utility/storage.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaymcgavren/dotfiles/HEAD/ruby/utility/lib/utility/storage.rb -------------------------------------------------------------------------------- /ruby/utility/lib/utility/version.rb: -------------------------------------------------------------------------------- 1 | module Utility 2 | VERSION = "0.0.1" 3 | end 4 | -------------------------------------------------------------------------------- /ruby/utility/spec/models/rateable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaymcgavren/dotfiles/HEAD/ruby/utility/spec/models/rateable.rb -------------------------------------------------------------------------------- /ruby/utility/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaymcgavren/dotfiles/HEAD/ruby/utility/spec/spec_helper.rb -------------------------------------------------------------------------------- /ruby/utility/spec/utility/enhancements_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaymcgavren/dotfiles/HEAD/ruby/utility/spec/utility/enhancements_spec.rb -------------------------------------------------------------------------------- /ruby/utility/spec/utility/launchers/osx_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaymcgavren/dotfiles/HEAD/ruby/utility/spec/utility/launchers/osx_spec.rb -------------------------------------------------------------------------------- /ruby/utility/utility.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaymcgavren/dotfiles/HEAD/ruby/utility/utility.gemspec -------------------------------------------------------------------------------- /slate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaymcgavren/dotfiles/HEAD/slate -------------------------------------------------------------------------------- /ssh/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaymcgavren/dotfiles/HEAD/ssh/config -------------------------------------------------------------------------------- /tmux.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaymcgavren/dotfiles/HEAD/tmux.conf -------------------------------------------------------------------------------- /todo-txt-sh/actions/edit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaymcgavren/dotfiles/HEAD/todo-txt-sh/actions/edit -------------------------------------------------------------------------------- /todo-txt-sh/todo.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaymcgavren/dotfiles/HEAD/todo-txt-sh/todo.cfg -------------------------------------------------------------------------------- /todo-txt-sh/todo_book.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaymcgavren/dotfiles/HEAD/todo-txt-sh/todo_book.cfg -------------------------------------------------------------------------------- /todo-txt-sh/todo_work.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaymcgavren/dotfiles/HEAD/todo-txt-sh/todo_work.cfg -------------------------------------------------------------------------------- /windows/provision_windows_computer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaymcgavren/dotfiles/HEAD/windows/provision_windows_computer.rb -------------------------------------------------------------------------------- /xscreensaver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaymcgavren/dotfiles/HEAD/xscreensaver -------------------------------------------------------------------------------- /zprofile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaymcgavren/dotfiles/HEAD/zprofile -------------------------------------------------------------------------------- /zshrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaymcgavren/dotfiles/HEAD/zshrc --------------------------------------------------------------------------------