mirror of
https://github.com/sezanzeb/input-remapper
synced 2024-11-04 12:00:16 +00:00
7 lines
141 B
Bash
Executable File
7 lines
141 B
Bash
Executable File
#!/bin/bash
|
|
if [ -d "/run/systemd/system/" ]; then
|
|
systemctl enable key-mapper
|
|
systemctl stop key-mapper
|
|
systemctl start key-mapper
|
|
fi
|