123456789101112131415161718192021222324252627282930313233343536 |
- # ~/.tmuxinator/vps.yml
- name: vps
- root: ~/
- # Optional tmux socket
- # socket_name: foo
- # Runs before everything. Use it to start daemons etc.
- # pre: sudo /etc/rc.d/mysqld start
- # Runs in each window and pane before window/pane specific commands. Useful for setting up interpreter versions.
- # pre_window: rbenv shell 2.0.0-p247
- # Pass command line options to tmux. Useful for specifying a different tmux.conf.
- # tmux_options: -f ~/.tmux.mac.conf
- # Change the command to call tmux. This can be used by derivatives/wrappers like byobu.
- # tmux_command: byobu
- windows:
- - apt: sudo aptitude
- - weechat: weechat
- - urls: tail -F ~/.weechat/urls.log
- - w3m: w3m -B
- - mutt: mutt
- - log: sudo lnav /var/log/nginx/access.log /var/log/nginx/error.log /var/log/fail2ban.log
- #- editor:
- #layout: main-vertical
- #panes:
- #- vim
- #- guard
- #- server: bundle exec rails s
- #- logs: tail -f log/development.log
|