27 lines
489 B
Bash
Executable File
27 lines
489 B
Bash
Executable File
#! /bin/sh -
|
|
|
|
run () {
|
|
if [ "$(date "+%H")" = "06" ] ; then
|
|
return 1
|
|
fi
|
|
sleep 10
|
|
export PATH="${PATH}:/home/tosuman/.local/bin"
|
|
export SHELL='/bin/bash'
|
|
|
|
number_of_tmux_sessions="$(tmux ls | wc -l)"
|
|
|
|
if [ "${number_of_tmux_sessions}" = "0" ] ; then
|
|
DISPLAY=:0 alacritty & disown
|
|
DISPLAY=:1 alacritty & disown
|
|
DISPLAY=:2 alacritty & disown
|
|
sleep 1
|
|
else
|
|
tmux new-window -c '/home/tosuman' &&
|
|
tmux rename-window 'System Update'
|
|
fi
|
|
|
|
tmux send-key 'paruuu' ENTER
|
|
}
|
|
|
|
run
|