mirror of
https://github.com/tmux-plugins/tmux-continuum.git
synced 2024-11-17 08:18:46 +00:00
14 lines
279 B
Bash
Executable File
14 lines
279 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Maintainer: Sven Vowe @nuclearglow
|
|
# Contact maintainer for any change to this file.
|
|
|
|
CURRENT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
|
|
source "$CURRENT_DIR/../variables.sh"
|
|
|
|
main() {
|
|
systemctl --user disable ${systemd_service_name}
|
|
}
|
|
main
|