Created
March 23, 2014 22:01
-
-
Save duryjames/9730559 to your computer and use it in GitHub Desktop.
used with a cron job on boot, auto start irssi in a tmux session
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| tmux new-session -d -s 0 | |
| tmux new-window -n 'irssi' 'irssi' | |
| tmux select-window -t 1 | |
| tmux detach-client |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @reboot $HOME/.start_irssi.sh |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment