8 lines
139 B
Bash
Executable File
8 lines
139 B
Bash
Executable File
#!/bin/bash
|
|
if [ -z ${DISPLAY+notset} ]; then
|
|
tmux source-file ~/.tmux/.tmux-tty.conf
|
|
else
|
|
tmux source-file ~/.tmux/.tmux-gui.conf
|
|
fi
|
|
|