diff --git a/.gitignore b/.gitignore index aa96bec..e003026 100644 --- a/.gitignore +++ b/.gitignore @@ -50,10 +50,11 @@ apps/ dev/ dmg/ ebooks/ +edu/ genymotion-log.zip jdk.table.xml mm.cfg wallpaper/ plex_media/ wallpapers/ -.docker/ \ No newline at end of file +.docker/ diff --git a/scripts/create_links.sh b/scripts/create_links.sh new file mode 100755 index 0000000..b2e65f6 --- /dev/null +++ b/scripts/create_links.sh @@ -0,0 +1,10 @@ +#/bin/sh +# create links for sublime text project files +# similar to an index, to quickly find sublime text projects...because the recents list SUCKS, only 10 items + +PWD=`pwd` +if [[ -d /Volumes/malloc-dev/sublimetext ]]; then + cd /Volumes/malloc-dev/sublimetext + find ../ -name "*.sublime-*" -exec ln -s {} \; +fi +cd $PWD