diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..7447f89 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/bin \ No newline at end of file diff --git a/README.md b/README.md index 95fd6a5..4530f13 100644 --- a/README.md +++ b/README.md @@ -74,6 +74,12 @@ macOS 10.15 Catalina and newer now use `zsh` as the default shell. If you're usi zinit wait'1' lucid light-mode as"program" pick"src/trash" for morgant/tools-osx ``` +* Using [Antidote](https://github.com/mattmc3/antidote): Add the following to your `~/.zsh_plugins.txt` file for each tool you wish to install, `trash`, for example (depending on how you setup Antidote, you may need to run another command to re-bundle your plugins, see [Antidote docs](https://getantidote.github.io/usage#loading-plugins) for details): + +```shell +morgant/tools-osx kind:path path:src/trash +``` + OTHER TOOLS ----------- diff --git a/Rakefile b/Rakefile index ba0671b..2b25fa1 100644 --- a/Rakefile +++ b/Rakefile @@ -25,14 +25,14 @@ task :default do EOF else mkdir './.tmp/' - cp './src/dict', './.tmp/dict.rb' + cp './src/dict/dict', './.tmp/dict.rb' sh "#{mrc} -o ./bin/dict ./.tmp/dict.rb" rm_rf './.tmp/' end end scrs = Dir.nonhidden_entries('./src/'); scrs.delete 'dict' - scrs.each {|f| cp "./src/#{f}", "./bin/#{f}" unless File.exist? "./bin/#{f}"} + scrs.each {|f| cp "./src/#{f}/#{f}", "./bin/#{f}" unless File.exist? "./bin/#{f}"} end task :install => [:default] do |t, args| diff --git a/src/32bitSafePerl b/src/32bitSafePerl/32bitSafePerl similarity index 100% rename from src/32bitSafePerl rename to src/32bitSafePerl/32bitSafePerl diff --git a/src/clipcat b/src/clipcat/clipcat similarity index 100% rename from src/clipcat rename to src/clipcat/clipcat diff --git a/src/dict b/src/dict/dict similarity index 100% rename from src/dict rename to src/dict/dict diff --git a/src/eject b/src/eject/eject similarity index 100% rename from src/eject rename to src/eject/eject diff --git a/src/launch b/src/launch/launch similarity index 100% rename from src/launch rename to src/launch/launch diff --git a/src/ql b/src/ql/ql similarity index 100% rename from src/ql rename to src/ql/ql diff --git a/src/swuser b/src/swuser/swuser similarity index 100% rename from src/swuser rename to src/swuser/swuser diff --git a/src/trash b/src/trash/trash similarity index 100% rename from src/trash rename to src/trash/trash diff --git a/src/urlmnt b/src/urlmnt/urlmnt similarity index 100% rename from src/urlmnt rename to src/urlmnt/urlmnt diff --git a/src/with b/src/with/with similarity index 100% rename from src/with rename to src/with/with