blob: 5970ec0eed4a1572e6e021ab3e897b9b98805a38 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#/bin/bash
case $1 in
i)
echo "plus" | nc -NU /tmp/hyprctl-zoom.sock
;;
d)
echo "minus" | nc -NU /tmp/hyprctl-zoom.sock
;;
*)
echo "Usage: $0 [id]"
exit 1
;;
esac
|