deprecate tmux_focus.sh
This commit is contained in:
parent
4656af8ca9
commit
173d09693a
|
@ -7,12 +7,18 @@ wm_focus() {
|
||||||
}
|
}
|
||||||
|
|
||||||
case "$dir" in
|
case "$dir" in
|
||||||
"left")
|
"left")
|
||||||
if [ "$(tmux display-message -p '#{pane_at_left}')" -ne 1 ]; then tmux select-pane -L; else wm_focus; fi ;;
|
if [ "$(tmux display-message -p '#{pane_at_left}')" -ne 1 ]; then tmux select-pane -L; else wm_focus; fi
|
||||||
"right")
|
;;
|
||||||
if [ "$(tmux display-message -p '#{pane_at_right}')" -ne 1 ]; then tmux select-pane -R; else wm_focus; fi ;;
|
"right")
|
||||||
"up")
|
if [ "$(tmux display-message -p '#{pane_at_right}')" -ne 1 ]; then tmux select-pane -R; else wm_focus; fi
|
||||||
if [ "$(tmux display-message -p '#{pane_at_top}')" -ne 1 ]; then tmux select-pane -U; else wm_focus; fi ;;
|
;;
|
||||||
"down")
|
"up")
|
||||||
if [ "$(tmux display-message -p '#{pane_at_bottom}')" -ne 1 ]; then tmux select-pane -D; else wm_focus; fi ;;
|
if [ "$(tmux display-message -p '#{pane_at_top}')" -ne 1 ]; then tmux select-pane -U; else wm_focus; fi
|
||||||
|
;;
|
||||||
|
"down")
|
||||||
|
if [ "$(tmux display-message -p '#{pane_at_bottom}')" -ne 1 ]; then tmux select-pane -D; else wm_focus; fi
|
||||||
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
|
awesome-client 'require("naughty").notify({title = "awesomewm-vim-tmux-navigator", text = "tmux_focus.sh is deprecated. Please update your tmux keybinds."})'
|
||||||
|
|
Loading…
Reference in New Issue