dotfiles

Cross platform dotfiles for linux, mac and windows

1 
2 
3 
4 
5 
6 
7 
8 
9 
10 
#!/usr/bin/env bash

#TODO Check system for this variable before setting default.
#TODO Handle if program not found
#TODO Add more search dirs for different platforms
search_dirs=("/Applications" "/System/Applications")

app="$(find ${search_dirs[@]} -maxdepth 2 -name "*.app" -type d | ${FUZZER})"

test -n "${app}" && open "${app}"