tmux: Add gitea issue tracking to dotfile session
When no changes are detected, neither uncommitted nor changed, one of the git-window panes will instead of a diff display a list of issues from gitea.
This commit is contained in:
parent
27cbf30da0
commit
b8fae73940
1 changed files with 1 additions and 1 deletions
|
@ -1,5 +1,5 @@
|
|||
rename-window dot-git
|
||||
send-keys "cd ~/.dotfiles; while true; do fd -t f --hidden | entr -cd git -c color.ui=always diff; done" C-m
|
||||
send-keys "cd ~/.dotfiles; while true; do [[ -z $(git status -s) ]] && { fd -t f --hidden | entr -cd tea issue ;} || { fd -t f --hidden | entr -cd git -c color.ui=always diff ;} ; done"
|
||||
split-window -h "cd ~/.dotfiles; while true; do fd -t f --hidden --exclude .git/objects | entr -cd git -c color.ui=always status; done"
|
||||
split-window -v
|
||||
send-keys "cd ~/.dotfiles; clear" C-m L C-m
|
||||
|
|
Loading…
Reference in a new issue