mirror of
https://github.com/sahinakkaya/dotfiles.git
synced 2024-11-22 08:39:38 +01:00
Rename task visualizer script
This commit is contained in:
parent
0cb129d95f
commit
17cfe1ba66
@ -1,17 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
#
|
|
||||||
|
|
||||||
tmux split-window -h
|
|
||||||
tmux split-window
|
|
||||||
tmux resize-pane -U 14
|
|
||||||
tmux resize-pane -R 5
|
|
||||||
tmux send-keys -t0 "btop" Enter
|
|
||||||
tmux send-keys -t1 "while true;do task next limit:5;sleep 2;done" Enter
|
|
||||||
tmux send-keys -t2 "while true;do task burndown.daily;sleep 3;done" Enter
|
|
||||||
|
|
||||||
tmux rename-window "tasks"
|
|
||||||
tmux new-window
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
24
scripts/tasks
Executable file
24
scripts/tasks
Executable file
@ -0,0 +1,24 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
#
|
||||||
|
|
||||||
|
tasks_window=$(tmux list-windows | grep tasks | cut -d: -f1)
|
||||||
|
if [[ -z "$tasks_window" ]]; then
|
||||||
|
tmux create-window
|
||||||
|
tmux split-window -h
|
||||||
|
tmux split-window
|
||||||
|
tmux resize-pane -U 14
|
||||||
|
tmux resize-pane -R 5
|
||||||
|
tmux send-keys -t0 "btop" Enter
|
||||||
|
tmux send-keys -t1 "while true;do task next limit:5;sleep 2;done" Enter
|
||||||
|
tmux send-keys -t2 "while true;do task burndown.daily;sleep 3;done" Enter
|
||||||
|
|
||||||
|
tmux rename-window "tasks"
|
||||||
|
else
|
||||||
|
tmux select-window -t $tasks_window
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user