mirror of
https://github.com/rbreaves/kinto.git
synced 2025-08-14 06:39:16 +02:00
15 lines
396 B
Bash
Executable File
15 lines
396 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
|
|
|
|
mkdir -p /tmp/kinto
|
|
cp /home/{username}/.config/kinto/kinto.py /tmp/kinto/kinto.py |