https://github.com/davissp14/terminal_tabs
Terminal tabs makes it super easy to quickly build out your terminal workstation.
https://github.com/davissp14/terminal_tabs
Last synced: 8 months ago
JSON representation
Terminal tabs makes it super easy to quickly build out your terminal workstation.
- Host: GitHub
- URL: https://github.com/davissp14/terminal_tabs
- Owner: davissp14
- Created: 2012-10-08T05:28:09.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2013-12-08T08:58:06.000Z (over 12 years ago)
- Last Synced: 2024-04-20T09:21:27.195Z (about 2 years ago)
- Language: Ruby
- Homepage:
- Size: 230 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Terminal Tabs
Terminal tabs makes it super easy to quickly build out your terminal workstation.
### Supported Terminals ##
* Iterm2
## Installation
git clone git@github.com:davissp14/terminal_tabs.git
## Getting started
Declare your desired executable names and tabs using the tabs.yml file
tabs:
rails_project: # Name of executable
rails_logs: "tail -f /Programming/rails_project/log/development.log" # Format: tab_name: cmd
rails_server: "cd /Programming/rails_project/ && rails s" # Format: tab_name: cmd
Generate an executable thats capable of building out your workstation.
$ ruby bin/generate_excutable.rb
Your executables are generated and placed in directory called 'output_files'. Continuing with our example, execute the following command to deploy your newly generated tabs.
$ ./output_files/rails_project.sh
##License
(The MIT License)
Copyright (c) 2009-2012 TJ Holowaychuk
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.