input-remapper/DEBIAN/postinst
2022-01-01 13:00:49 +01:00

12 lines
366 B
Bash
Executable File

#!/bin/bash
if [ -d "/run/systemd/system/" ]; then
# old name, those lines should at some point be removed from postinst
pkill -f key-mapper-service
systemctl disable key-mapper
systemctl stop key-mapper
pkill -f input-remapper-service # might have been started by the gui previously
systemctl enable input-remapper
systemctl start input-remapper
fi