├── .travis.yml ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── desk ├── examples ├── desk.sh ├── hello.fish ├── hello.sh ├── python_project.sh └── terraform.sh ├── screencap.gif ├── shell_plugins ├── bash │ └── desk ├── fish │ └── desk.fish └── zsh │ ├── _desk │ └── desk.plugin.zsh └── test ├── bashrc ├── run_tests.fish ├── run_tests.sh └── zshrc /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesob/desk/HEAD/.travis.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesob/desk/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesob/desk/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesob/desk/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesob/desk/HEAD/README.md -------------------------------------------------------------------------------- /desk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesob/desk/HEAD/desk -------------------------------------------------------------------------------- /examples/desk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesob/desk/HEAD/examples/desk.sh -------------------------------------------------------------------------------- /examples/hello.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesob/desk/HEAD/examples/hello.fish -------------------------------------------------------------------------------- /examples/hello.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesob/desk/HEAD/examples/hello.sh -------------------------------------------------------------------------------- /examples/python_project.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesob/desk/HEAD/examples/python_project.sh -------------------------------------------------------------------------------- /examples/terraform.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesob/desk/HEAD/examples/terraform.sh -------------------------------------------------------------------------------- /screencap.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesob/desk/HEAD/screencap.gif -------------------------------------------------------------------------------- /shell_plugins/bash/desk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesob/desk/HEAD/shell_plugins/bash/desk -------------------------------------------------------------------------------- /shell_plugins/fish/desk.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesob/desk/HEAD/shell_plugins/fish/desk.fish -------------------------------------------------------------------------------- /shell_plugins/zsh/_desk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesob/desk/HEAD/shell_plugins/zsh/_desk -------------------------------------------------------------------------------- /shell_plugins/zsh/desk.plugin.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesob/desk/HEAD/shell_plugins/zsh/desk.plugin.zsh -------------------------------------------------------------------------------- /test/bashrc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/run_tests.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesob/desk/HEAD/test/run_tests.fish -------------------------------------------------------------------------------- /test/run_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesob/desk/HEAD/test/run_tests.sh -------------------------------------------------------------------------------- /test/zshrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesob/desk/HEAD/test/zshrc --------------------------------------------------------------------------------