mirror of
https://github.com/sezanzeb/input-remapper
synced 2024-11-08 07:10:36 +00:00
7 lines
192 B
Bash
Executable File
7 lines
192 B
Bash
Executable File
#!/bin/bash
|
|
if [ -d "/run/systemd/system/" ]; then
|
|
pkill -f key-mapper-service # might have been started by the gui previously
|
|
systemctl enable key-mapper
|
|
systemctl start key-mapper
|
|
fi
|