blob: 5e856acce7f46e3749fd48d8ad9a37b51d595d37 (
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
28
29
30
31
32
33
34
35
36
37
|
#!/bin/bash
post_install() {
cat << 'EOF'
########################
installation succeeded!
(1) If you want to run mouselss without "sudo"
or root permission,
please add your username into "input" group:
sudo gpasswd -a $USER input
(2) System service config file:
/etc/mouseless/config.yaml
To start a system-wide service, please run:
systemctl start mouseless.service
(3) User service config file:
$HOME/.config/mouseless/config.yaml
To start a user-scoped service, please run:
systemctl --user start mouseless.service
(4) About config file example, please refer:
/usr/share/doc/mouseless/example_configs
########################
EOF
}
|