mirror of
https://github.com/tmux-plugins/tmux-continuum.git
synced 2024-11-14 22:28:47 +00:00
11 lines
191 B
Bash
Executable File
11 lines
191 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
CURRENT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
|
|
source "$CURRENT_DIR/../variables.sh"
|
|
|
|
main() {
|
|
systemctl --user disable ${systemd_service_name}
|
|
}
|
|
main
|