Skip to content

Commit 64b50b8

Browse files
author
Steven Joseph (asyncmind)
committed
fix: silence errors on missing files to source
1 parent bc4219c commit 64b50b8

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

inner.conf

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
source /etc/tmuxpy/common.conf
2-
source /usr/local/etc/tmuxpy/common.conf
3-
source ~/.local/etc/tmuxpy/common.conf
4-
source ~/.tmuxpy/common.conf
5-
source ~/.tmux/common.conf
1+
source -q /etc/tmuxpy/common.conf
2+
source -q /usr/local/etc/tmuxpy/common.conf
3+
source -q ~/.local/etc/tmuxpy/common.conf
4+
source -q ~/.tmuxpy/common.conf
5+
source -q ~/.tmux/common.conf
66
set -g prefix C-a
77
bind-key a send-prefix
88
bind-key C-a last-window

outer.conf

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
source /etc/tmuxpy/common.conf
2-
source /usr/local/etc/tmuxpy/common.conf
3-
source ~/.local/etc/tmuxpy/common.conf
4-
source ~/.tmuxpy/common.conf
5-
source ~/.tmux/common.conf
1+
source -q /etc/tmuxpy/common.conf
2+
source -q /usr/local/etc/tmuxpy/common.conf
3+
source -q ~/.local/etc/tmuxpy/common.conf
4+
source -q ~/.tmuxpy/common.conf
5+
source -q ~/.tmux/common.conf
66
set -g prefix C-b
77
bind-key b send-prefix
88
bind-key C-b last-window

0 commit comments

Comments
 (0)