diff --git a/README.md b/README.md index 6c5147a..dc96c41 100644 --- a/README.md +++ b/README.md @@ -52,6 +52,7 @@ Here's a list of the most interesting ones, along with what they do and where th - sendclip - Pipes stdin to localhost:5556. Useful in conjuntion with ssh port forwarding and the tool above. - [shellshare](https://shellshare.net/) - A live terminal broadcasting utility. - [colortrans](https://gist.github.com/MicahElliott/719710) - Convert rgb colours to xterm ones + - nautilus-here - A quick command that opens nautilus in the current directory. For lazy people :P ## Disclaimer I don't own many of the tools in this repository. If you are an owner of one of these tools and I haven't linked to you, please let me know as I probably forgot. diff --git a/nautilus-here b/nautilus-here new file mode 100755 index 0000000..9008472 --- /dev/null +++ b/nautilus-here @@ -0,0 +1,3 @@ +#!/usr/bin/env bash +nautilus $(pwd) & disown +