9 lines
152 B
Bash
Executable File
9 lines
152 B
Bash
Executable File
#!/usr/bin/bash
|
|
|
|
event="$1"
|
|
type="$3"
|
|
|
|
if [[ "$event" == "XIDeviceEnabled" && "$type" == "XISlaveKeyboard" ]]; then
|
|
~/.dotfiles/scripts/mod_keys
|
|
fi
|