mirror of
https://github.com/rbreaves/kinto.git
synced 2025-08-14 06:39:16 +02:00
12 lines
312 B
Bash
Executable File
12 lines
312 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if systemctl -q --user is-enabled keyswap.timer; then
|
|
systemctl --user stop keyswap.timer
|
|
systemctl --user disable keyswap.timer
|
|
fi
|
|
if systemctl -q --user is-active keyswap; then
|
|
systemctl --user stop keyswap
|
|
fi
|
|
if systemctl -q --user is-enabled keyswap; then
|
|
systemctl --user disable keyswap
|
|
fi |