8 lines
127 B
Bash
8 lines
127 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
ln -fs light-mode.conf ~/.config/tmux/current-theme.conf
|
||
|
|
||
|
if tmux list-sesions; then
|
||
|
tmux source ~/.tmux.conf
|
||
|
fi
|