1
0
Fork 0
dotfiles/files/.config/zsh/custom/200-motd.zsh

10 lines
145 B
Bash
Raw Normal View History

2018-03-10 04:04:29 +00:00
if [ "$IS_ROOT" = false ]; then
2018-04-29 17:51:03 +00:00
cat /etc/issue
2018-03-10 04:04:29 +00:00
# Check tmux
if tmux info &>/dev/null; then
2018-03-14 13:33:11 +00:00
printf "\n%s\n\n" "$(tmux ls)"
2018-03-10 04:04:29 +00:00
fi
fi