浏览代码

Add nn(), like bb() but with a memo hint

Alois Mahdal 6 年前
父节点
当前提交
40e5955c38
共有 1 个文件被更改,包括 10 次插入0 次删除
  1. 10
    0
      dotfiles/bash/main.bashrc

+ 10
- 0
dotfiles/bash/main.bashrc 查看文件

22
     printf '\a'
22
     printf '\a'
23
 }
23
 }
24
 
24
 
25
+nn() {
26
+    #
27
+    # Ring the bell and send notification $1
28
+    #
29
+    local msg=${1:-this is done}
30
+    bb
31
+    echo -e "hey, \033[1;31m$msg\033[1;0m!"
32
+    notify-send -a 'nn()' "hey, $msg"
33
+}
34
+
25
 dt() {
35
 dt() {
26
     #
36
     #
27
     # Open $1 new terminals
37
     # Open $1 new terminals