Files
dotfiles/runs/before/espanso

14 lines
218 B
Bash
Executable File

#!/usr/bin/env bash
set -e
set -o nounset
set -o pipefail
uninstall() {
log " Tearing down espanso."
espanso service stop
espanso service unregister
}
arg=${1:-""}
[[ $arg == "uninstall" ]] && uninstall && exit 0