blob: ea6f86c3d26bf94b7dc084193f976c7b19d96511 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
post_install() {
cat << EOF
Please execute
$ sudo systemctl enable tuxedo-keyboard-keep-light-level.service
$ systemctl --user enable tuxedo-keyboard-idle.service
and restart machine.
Report any issues to:
https://github.com/onurbbr/tuxedo-keyboard-tools/issues
EOF
}
post_remove() {
cat << EOF
Please execute after uninstalling tuxedo-keyboard-tools
$ sudo systemctl disable tuxedo-keyboard-keep-light-level.service
$ systemctl --user disable tuxedo-keyboard-idle.service
and restart machine.
EOF
}
|