avoid checking the mouse everytime

This commit is contained in:
Morgan Wattiez
2019-08-16 14:52:59 +02:00
parent 69d4cca748
commit 22ca6abe94
4 changed files with 11 additions and 8 deletions

View File

@ -110,3 +110,10 @@ function biggerthan() {
function cd() {
builtin cd "$@" && ls -latr
}
function mouse() {
case "$(uname -s)" in
Darwin)
sh ~/.scripts/mouse_bluetooth.sh
;;
esac
}