#!/usr/bin/env python
import os
import threading
import time
from rockets import *
threads = [
    threading.Thread(target=secure_shell, name='ssh'),
    threading.Thread(target=dockerd, name='docker'),
    threading.Thread(target=ranger, name='ranger'),
    threading.Thread(target=terminal, name='fish'),
    threading.Thread(target=editor, name='vim'),
    threading.Thread(target=git, name='git'),
]
for i in threads:
    i.start()
multiplexer()
os.system('sudo -H -u who byobu');
