소스 검색

Do notify about sleeping

Alois Mahdal 3 년 전
부모
커밋
0d854d68d5
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  1. 1
    0
      dotfiles/bash/main.bashrc

+ 1
- 0
dotfiles/bash/main.bashrc 파일 보기

45
     # Ring the bell
45
     # Ring the bell
46
     #
46
     #
47
     local stime=${1:-0}
47
     local stime=${1:-0}
48
+    test "$stime" == 0 || echo -e "sleeping for $BASHUM_COLOR_LGREEN$stime$BASHUM_COLOR_NORMAL"
48
     sleep "$stime"
49
     sleep "$stime"
49
     printf '\a'
50
     printf '\a'
50
 }
51
 }