aboutsummaryrefslogtreecommitdiff
path: root/.local/bin/scripts/events-resume
blob: 50ffd2c09975b102200e56aa5843cc35ec8e9d7d (plain)
1
2
3
4
5
6
7
8
9
#!/bin/sh -eux

# reset x11vnc
x11vnc -R stop;

# reset input devices
for device in $(xinput --list --id-only)
  do xinput --disable "$device" && xinput --enable "$device";
done;