7725111195
To take into account disabled_on_external_mouse
14 lines
308 B
Bash
Executable file
14 lines
308 B
Bash
Executable file
#!/bin/sh
|
|
|
|
current_state() {
|
|
swaymsg -t get_inputs | jq -r 'map(select(.type == "touchpad")) | .[0].libinput.send_events'
|
|
}
|
|
set_state() {
|
|
swaymsg "input type:touchpad events $@"
|
|
}
|
|
|
|
if [ "$(current_state)" == disabled_on_external_mouse ]; then
|
|
set_state disabled
|
|
else
|
|
set_state toggle enabled disabled
|
|
fi
|