]> Sergey Matveev's repositories - dotfiles.git/commitdiff
Unify prompt character
authorSergey Matveev <stargrave@stargrave.org>
Wed, 30 Sep 2020 09:49:53 +0000 (12:49 +0300)
committerSergey Matveev <stargrave@stargrave.org>
Wed, 30 Sep 2020 09:49:53 +0000 (12:49 +0300)
bin/bin/tmux-menu-dict.sh
bin/bin/tmux-menu-pass.sh

index df098779a6910112f3a45b5343a94d831cc458d7..d7cc8fcf66f47c7e92ee6ba799ed0d75a2393d51 100755 (executable)
@@ -1,5 +1,5 @@
 #!/bin/sh
 
-echo -n "? "
+echo -n "> "
 read word
 sdcv $word | less
index 937f08f2a98b2a3994db8cb854f7789f8de34400..14f4870c9662cf193c54f8084b3c1517349ca7a4 100755 (executable)
@@ -1,7 +1,7 @@
 #!/bin/sh
 
 while :; do
-    echo -n "? "
+    echo -n "> "
     read pass
     passman has "$pass" || continue
     passman "$pass" >/dev/null &