mirror of
https://github.com/m-housh/dotfiles.git
synced 2026-02-14 22:22:40 +00:00
14 lines
218 B
Bash
Executable File
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
|